| <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"> |
| <!-- Testing more and more and more --> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>com.mycompany.app</groupId> |
| <artifactId>my-app</artifactId> |
| <packaging>jar</packaging> |
| <version>1.1-SNAPSHOT</version> |
| <name>my-app</name> |
| <url>http://maven.apache.org</url> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-release-plugin</artifactId> |
| <version>2.5</version> |
| </plugin> |
| </plugins> |
| </build> |
| <dependencies> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>3.8.1</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| <scm> |
| <developerConnection>scm:git:ssh://fulliautomatix.ics.uci.edu:29418/ceej-gerrit-test</developerConnection> |
| </scm> |
| <distributionManagement> |
| <repository> |
| <id>test</id> |
| <name>test</name> |
| <url>http://localhost:8081/nexus/content/repositories/snapshots/</url> |
| </repository> |
| </distributionManagement> |
| </project> |