blob: f3817b4ea4a68e721196fe008939abcdcd3a320a [file] [log] [blame]
Chris Hilleryefed81a2014-06-23 00:48:07 -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">
Chris Hilleryb91798f2014-06-23 00:09:56 -07002 <!-- Testing more and more and more and more -->
Ian512803f2014-06-20 17:56:46 -07003 <modelVersion>4.0.0</modelVersion>
4 <groupId>com.mycompany.app</groupId>
5 <artifactId>my-app</artifactId>
6 <packaging>jar</packaging>
Chris Hilleryefed81a2014-06-23 00:48:07 -07007 <version>1.2-SNAPSHOT</version>
Ian512803f2014-06-20 17:56:46 -07008 <name>my-app</name>
9 <url>http://maven.apache.org</url>
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.maven.plugins</groupId>
14 <artifactId>maven-release-plugin</artifactId>
15 <version>2.5</version>
Chris Hilleryefed81a2014-06-23 00:48:07 -070016 <configuration>
17 <goals>install</goals>
18 </configuration>
Ian512803f2014-06-20 17:56:46 -070019 </plugin>
20 </plugins>
21 </build>
22 <dependencies>
23 <dependency>
24 <groupId>junit</groupId>
25 <artifactId>junit</artifactId>
26 <version>3.8.1</version>
27 <scope>test</scope>
28 </dependency>
29 </dependencies>
30 <scm>
Ian8ee9de32014-06-20 18:12:54 -070031 <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/ceej-gerrit-test</developerConnection>
Chris Hilleryefed81a2014-06-23 00:48:07 -070032 <tag>HEAD</tag>
Ian512803f2014-06-20 17:56:46 -070033 </scm>
Ian512803f2014-06-20 17:56:46 -070034</project>