blob: 79326a35a01b5d2af5bbbdf159bc4916a90a9128 [file] [log] [blame]
sberlin@gmail.com255af732010-08-01 19:49:16 +00001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
crazybobleeac266a22007-02-26 00:07:01 +00004 <modelVersion>4.0.0</modelVersion>
sberlin@gmail.com255af732010-08-01 19:49:16 +00005 <parent>
6 <groupId>com.google.inject</groupId>
7 <artifactId>guice-parent</artifactId>
sberlinb0852382010-08-01 19:55:08 +00008 <version>3.0-SNAPSHOT</version>
9 <relativePath>guice-parent/pom.xml</relativePath>
sberlin@gmail.com255af732010-08-01 19:49:16 +000010 </parent>
crazybobleeac266a22007-02-26 00:07:01 +000011 <artifactId>guice</artifactId>
12 <packaging>jar</packaging>
sberlinb0852382010-08-01 19:55:08 +000013 <name>Google Guice: Core</name>
sberlin@gmail.com255af732010-08-01 19:49:16 +000014 <!-- Note: this pom is for dependency management only. It will not build the project -->
crazybobleeac266a22007-02-26 00:07:01 +000015 <dependencies>
sberlin@gmail.com255af732010-08-01 19:49:16 +000016 <!-- CGLib is not listed because it has been repackaged with JarJar -->
crazybobleeac266a22007-02-26 00:07:01 +000017 <dependency>
sberlin@gmail.com255af732010-08-01 19:49:16 +000018 <groupId>aopalliance</groupId>
19 <artifactId>aopalliance</artifactId>
crazybobleeac266a22007-02-26 00:07:01 +000020 </dependency>
sberlinb0852382010-08-01 19:55:08 +000021
22 <!-- Not optional, even in pure-Guice, no JSR 330 applications:
23 javax.inject.Provider is referenced in Guice code. -->
24 <dependency>
25 <groupId>javax.inject</groupId>
26 <artifactId>javax.inject</artifactId>
27 <version>1</version>
28 </dependency>
crazybobleeac266a22007-02-26 00:07:01 +000029 </dependencies>
crazybobleeac266a22007-02-26 00:07:01 +000030</project>