blob: 60ae1094232b9a71c0642e09eb1892a9e8e3a56f [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>
Iand741e922014-06-20 18:23:15 -07006 <version>1.1-SNAPSHOT</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>
Ian512803f2014-06-20 17:56:46 -070028 </scm>
29 <distributionManagement>
30 <repository>
31 <id>test</id>
32 <name>test</name>
33 <url>http://localhost:8081/nexus/content/repositories/test/</url>
34 </repository>
35 </distributionManagement>
36</project>