| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <!-- |
| @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> |
| --> |
| |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| |
| <parent> |
| <groupId>org.apache.directory.project</groupId> |
| <version>8</version> |
| <artifactId>project</artifactId> |
| </parent> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.apache.directory.studio</groupId> |
| <artifactId>maven-studio-plugin</artifactId> |
| <packaging>maven-plugin</packaging> |
| <name>Apache Directory Studio Plugin</name> |
| <version>1.0-SNAPSHOT</version> |
| <description>Maven2 plugin with specific goals for the Apache Directory Studio project</description> |
| <url>http://directory.apache.org/studio/</url> |
| |
| <inceptionYear>2007</inceptionYear> |
| |
| <issueManagement> |
| <system>JIRA</system> |
| <url>http://issues.apache.org/jira/browse/DIRSTUDIO</url> |
| </issueManagement> |
| |
| <scm> |
| <connection>scm:svn:https://svn.apache.org/repos/asf/directory/studio/branches/studio-maven/studio-plugin/</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/directory/studio/branches/studio-maven/studio-plugin/</developerConnection> |
| <url>https://svn.apache.org/repos/asf/directory/studio/branches/studio-maven/studio-plugin/</url> |
| </scm> |
| |
| <distributionManagement> |
| <site> |
| <id>felixknecht.ch</id> |
| <url>scpexe://felixknecht.ch/var/www/felixknecht.ch/htdocs/projects/studio-plugin/</url> |
| </site> |
| </distributionManagement> |
| |
| <mailingLists> |
| <mailingList> |
| <name>Directory Developers List</name> |
| <subscribe>dev-subscribe@directory.apache.org</subscribe> |
| <unsubscribe>dev-unsubscribe@directory.apache.org</unsubscribe> |
| <post>dev@directory.apache.org</post> |
| <archive>http://mail-archives.apache.org/mod_mbox/directory-dev</archive> |
| </mailingList> |
| <mailingList> |
| <name>Directory Users List</name> |
| <subscribe>users-subscribe@directory.apache.org</subscribe> |
| <unsubscribe>users-unsubscribe@directory.apache.org</unsubscribe> |
| <post>users@directory.apache.org</post> |
| <archive>http://mail-archives.apache.org/mod_mbox/directory-users</archive> |
| </mailingList> |
| <mailingList> |
| <name>Directory Commits (SVN) List</name> |
| <subscribe>commits-subscribe@directory.apache.org</subscribe> |
| <unsubscribe>commits-unsubscribe@directory.apache.org</unsubscribe> |
| <archive>http://mail-archives.apache.org/mod_mbox/directory-commits</archive> |
| </mailingList> |
| </mailingLists> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-eclipse-plugin</artifactId> |
| <configuration> |
| <skip>false</skip> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.3</version> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| <version>2.1</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| <version>1.3.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-artifact</artifactId> |
| <version>2.0.7</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-model</artifactId> |
| <version>2.0.7</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-plugin-api</artifactId> |
| <version>2.0.7</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-project</artifactId> |
| <version>2.0.7</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.shared</groupId> |
| <artifactId>maven-osgi</artifactId> |
| <version>0.2.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-archiver</artifactId> |
| <version>1.0-alpha-9</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-container-default</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-component-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-utils</artifactId> |
| <version>1.4.1</version> |
| </dependency> |
| |
| <!-- Test --> |
| <dependency> |
| <groupId>org.apache.maven.shared</groupId> |
| <artifactId>maven-plugin-testing-harness</artifactId> |
| <version>1.1</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <reporting> |
| <excludeDefaults>true</excludeDefaults> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jxr-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-plugin-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-pmd-plugin</artifactId> |
| <configuration> |
| <linkXref>true</linkXref> |
| <sourceEncoding>utf-8</sourceEncoding> |
| <minimumTokens>100</minimumTokens> |
| <targetJdk>1.5</targetJdk> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-project-info-reports-plugin</artifactId> |
| <reportSets> |
| <reportSet> |
| <reports> |
| <report>license</report> |
| <report>dependencies</report> |
| <report>mailing-list</report> |
| <report>cim</report> |
| <report>scm</report> |
| <report>issue-tracking</report> |
| </reports> |
| </reportSet> |
| </reportSets> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-report-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>cobertura-maven-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>taglist-maven-plugin</artifactId> |
| <configuration> |
| <tags> |
| <tag>TODO</tag> |
| <tag>@todo</tag> |
| <tag>@deprecated</tag> |
| <tag>FIXME</tag> |
| </tags> |
| </configuration> |
| </plugin> |
| </plugins> |
| </reporting> |
| |
| </project> |