| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.eclipse</groupId> |
| <artifactId>eclipse-parent</artifactId> |
| <version>3</version> |
| <relativePath>../eclipse-parent/pom.xml</relativePath> |
| </parent> |
| |
| <groupId>org.eclipse.dash.maven</groupId> |
| <artifactId>eclipse-signing-maven-plugin</artifactId> |
| <version>1.0.4</version> |
| <name>Eclipse :: Dash :: Eclipse Signing Maven Plugin</name> |
| <description>Plugin for signing code on the eclipse build servers.</description> |
| <packaging>maven-plugin</packaging> |
| <issueManagement> |
| <system>Bugzilla</system> |
| <url>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Dash</url> |
| </issueManagement> |
| <scm> |
| <connection>scm:git:http://git.eclipse.org/gitroot/dash/org.eclipse.dash.maven.git</connection> |
| <developerConnection>scm:git:ssh://git.eclipse.org/gitroot/dash/org.eclipse.dash.maven.git</developerConnection> |
| <url>http://git.eclipse.org/c/dash/org.eclipse.dash.maven.git</url> |
| </scm> |
| <distributionManagement> |
| <repository> |
| <uniqueVersion>false</uniqueVersion> |
| <id>eclipse-milestone-indigo</id> |
| <name>Eclipse Indigo Milestone Repository</name> |
| <url>http://maven.eclipse.org/nexus/content/repositories/milestone-indigo/</url> |
| <layout>default</layout> |
| </repository> |
| <snapshotRepository> |
| <uniqueVersion>true</uniqueVersion> |
| <id>eclipse-nightly-indigo</id> |
| <name>Eclipse Indigo Nightly Snapshots</name> |
| <url>http://maven.eclipse.org/nexus/content/repositories/nightly-indigo/</url> |
| <layout>default</layout> |
| </snapshotRepository> |
| </distributionManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-project</artifactId> |
| <version>2.0.8</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-plugin-api</artifactId> |
| <version>2.0.8</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-artifact</artifactId> |
| <version>2.0.8</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-plugin-tools-api</artifactId> |
| <version>2.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-archiver</artifactId> |
| <version>2.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-utils</artifactId> |
| <version>3.0</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant</artifactId> |
| <version>1.8.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>wagon-maven-plugin</artifactId> |
| <version>1.0-beta-3</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.9</version> |
| <!--configuration> |
| <skip>true</skip> |
| </configuration--> |
| </plugin> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.3.2</version> |
| <configuration> |
| <source>1.5</source> |
| <target>1.5</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-plugin-plugin</artifactId> |
| <version>2.8</version> |
| <executions> |
| <execution> |
| <id>exec-plugin-doc</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>helpmojo</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| <reporting> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-plugin-plugin</artifactId> |
| <version>2.8</version> |
| </plugin> |
| </plugins> |
| </reporting> |
| </project> |