Chris Hillery | efed81a | 2014-06-23 00:48:07 -0700 | [diff] [blame^] | 1 | <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 Hillery | b91798f | 2014-06-23 00:09:56 -0700 | [diff] [blame] | 2 | <!-- Testing more and more and more and more --> |
Ian | 512803f | 2014-06-20 17:56:46 -0700 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>com.mycompany.app</groupId> |
| 5 | <artifactId>my-app</artifactId> |
| 6 | <packaging>jar</packaging> |
Chris Hillery | efed81a | 2014-06-23 00:48:07 -0700 | [diff] [blame^] | 7 | <version>1.2-SNAPSHOT</version> |
Ian | 512803f | 2014-06-20 17:56:46 -0700 | [diff] [blame] | 8 | <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 Hillery | efed81a | 2014-06-23 00:48:07 -0700 | [diff] [blame^] | 16 | <configuration> |
| 17 | <goals>install</goals> |
| 18 | </configuration> |
Ian | 512803f | 2014-06-20 17:56:46 -0700 | [diff] [blame] | 19 | </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> |
Ian | 8ee9de3 | 2014-06-20 18:12:54 -0700 | [diff] [blame] | 31 | <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/ceej-gerrit-test</developerConnection> |
Chris Hillery | efed81a | 2014-06-23 00:48:07 -0700 | [diff] [blame^] | 32 | <tag>HEAD</tag> |
Ian | 512803f | 2014-06-20 17:56:46 -0700 | [diff] [blame] | 33 | </scm> |
Ian | 512803f | 2014-06-20 17:56:46 -0700 | [diff] [blame] | 34 | </project> |