aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorcrazyboblee <crazyboblee@d779f126-a31b-0410-b53b-1d3aecad763e>2007-02-26 00:07:01 +0000
committercrazyboblee <crazyboblee@d779f126-a31b-0410-b53b-1d3aecad763e>2007-02-26 00:07:01 +0000
commitac266a2257cbe441b78d4b40d0b009f7e36e9758 (patch)
tree0b62e365c44b241a4c63390e781a33099532cfc5 /pom.xml
parent3be9b71d8df5d0218dc791cf5d208aa580e608d7 (diff)
downloadguice-ac266a2257cbe441b78d4b40d0b009f7e36e9758.tar.gz
Added Maven build file.
git-svn-id: https://google-guice.googlecode.com/svn/trunk@223 d779f126-a31b-0410-b53b-1d3aecad763e
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 00000000..72d149df
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,30 @@
+<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">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>com.google.inject</groupId>
+ <artifactId>guice</artifactId>
+ <packaging>jar</packaging>
+ <version>1.0-RC2</version>
+ <name>guice</name>
+ <url>http://maven.apache.org</url>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>