Permalink
Cannot retrieve contributors at this time
Fetching contributors…

<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/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>br.com.caelum.vraptor</groupId> | |
<artifactId>vraptor-moip</artifactId> | |
<version>1.0.1-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>vraptor-moip</name> | |
<url>http://maven.apache.org</url> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
</properties> | |
<parent> | |
<groupId>org.sonatype.oss</groupId> | |
<artifactId>oss-parent</artifactId> | |
<version>3</version> | |
</parent> | |
<scm> | |
<url>http://github.com/caelum/vraptor-moip</url> | |
<connection>scm:git:git://github.com/caelum/vraptor-moip</connection> | |
<developerConnection>scm:git:git@github.com:caelum/vraptor-moip.git</developerConnection> | |
</scm> | |
<dependencies> | |
<dependency> | |
<groupId>commons-httpclient</groupId> | |
<artifactId>commons-httpclient</artifactId> | |
<version>3.1</version> | |
</dependency> | |
<dependency> | |
<groupId>br.com.caelum</groupId> | |
<artifactId>vraptor</artifactId> | |
<version>3.4.0</version> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>br.com.caelum.vraptor</groupId> | |
<artifactId>vraptor-environment</artifactId> | |
<version>1.0.2-SNAPSHOT</version> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.8.2</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.mortbay.jetty</groupId> | |
<artifactId>servlet-api</artifactId> | |
<version>3.0.20100224</version> | |
<scope>provided</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.3.2</version> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
<encoding>UTF-8</encoding> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<version>2.3.1</version> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |