blob: 72d7821dd833a98022b5b4d7d0e66d4c0a095792 [file] [log] [blame]
Ianac4ee012014-06-20 18:14:43 -07001<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">
Ian512803f2014-06-20 17:56:46 -07002 <modelVersion>4.0.0</modelVersion>
3 <groupId>com.mycompany.app</groupId>
4 <artifactId>my-app</artifactId>
5 <packaging>jar</packaging>
Ianac4ee012014-06-20 18:14:43 -07006 <version>1.0</version>
Ian512803f2014-06-20 17:56:46 -07007 <name>my-app</name>
8 <url>http://maven.apache.org</url>
9 <build>
10 <plugins>
11 <plugin>
12 <groupId>org.apache.maven.plugins</groupId>
13 <artifactId>maven-release-plugin</artifactId>
14 <version>2.5</version>
15 </plugin>
16 </plugins>
17 </build>
18 <dependencies>
19 <dependency>
20 <groupId>junit</groupId>
21 <artifactId>junit</artifactId>
22 <version>3.8.1</version>
23 <scope>test</scope>
24 </dependency>
25 </dependencies>
26 <scm>
Ian8ee9de32014-06-20 18:12:54 -070027 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/ceej-gerrit-test</developerConnection>
Ianac4ee012014-06-20 18:14:43 -070028 <tag>my-app-1.0</tag>
Ian512803f2014-06-20 17:56:46 -070029 </scm>
30 <distributionManagement>
31 <repository>
32 <id>test</id>
33 <name>test</name>
34 <url>http://localhost:8081/nexus/content/repositories/test/</url>
35 </repository>
36 </distributionManagement>
37</project>