blob: 666b92980c3b4d371d34e6d1a05aed2e7296f609 [file] [log] [blame]
mccullsbc7e1502010-10-21 23:36:09 +00001<?xml version="1.0" encoding="UTF-8"?>
sberlinb0852382010-08-01 19:55:08 +00002
mccullsbc7e1502010-10-21 23:36:09 +00003<!--
4Copyright (c) 2006 Google, Inc. All rights reserved.
5
6This program is licensed to you under the Apache License Version 2.0,
7and you may not use this file except in compliance with the Apache License Version 2.0.
8You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
9
10Unless required by applicable law or agreed to in writing,
11software distributed under the Apache License Version 2.0 is distributed on an
12"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
14-->
15
16<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">
17
18 <modelVersion>4.0.0</modelVersion>
19
20 <parent>
21 <groupId>com.google</groupId>
22 <artifactId>google</artifactId>
23 <version>5</version>
24 </parent>
25
26 <packaging>pom</packaging>
27
28 <groupId>com.google.inject</groupId>
29 <artifactId>guice-parent</artifactId>
30 <version>3.0-SNAPSHOT</version>
31
32 <name>Google Guice</name>
33
34 <description>
35 Guice is a lightweight dependency injection framework for Java 5 and above
36 </description>
37
38 <url>http://code.google.com/p/google-guice/</url>
39 <inceptionYear>2006</inceptionYear>
40
41 <organization>
42 <name>Google, Inc.</name>
43 <url>http://www.google.com</url>
44 </organization>
45
46 <mailingLists>
47 <mailingList>
48 <name>Guice Users List</name>
49 <archive>http://groups.google.com/group/google-guice/topics</archive>
50 <subscribe>http://groups.google.com/group/google-guice/subscribe</subscribe>
51 <unsubscribe>http://groups.google.com/group/google-guice/subscribe</unsubscribe>
52 <post>http://groups.google.com/group/google-guice/post</post>
53 </mailingList>
54 <mailingList>
55 <name>Guice Developers List</name>
56 <archive>http://groups.google.com/group/google-guice-dev/topics</archive>
57 <subscribe>http://groups.google.com/group/google-guice-dev/subscribe</subscribe>
58 <unsubscribe>http://groups.google.com/group/google-guice-dev/subscribe</unsubscribe>
59 <post>http://groups.google.com/group/google-guice-dev/post</post>
60 </mailingList>
61 </mailingLists>
62
63 <scm>
64 <connection>scm:svn:http://google-guice.googlecode.com/svn/trunk</connection>
65 <developerConnection>scm:svn:https://google-guice.googlecode.com/svn/trunk</developerConnection>
66 <url>http://code.google.com/p/google-guice/source/browse</url>
67 </scm>
68
69 <issueManagement>
70 <system>Google Code</system>
71 <url>http://code.google.com/p/google-guice/issues/</url>
72 </issueManagement>
73
mcculls00090052010-10-22 00:12:40 +000074 <ciManagement>
75 <system>Hudson</system>
76 <url>https://grid.sonatype.org/ci/job/Google-Guice/</url>
77 </ciManagement>
78
mccullsbc7e1502010-10-21 23:36:09 +000079 <licenses>
80 <license>
81 <name>The Apache Software License, Version 2.0</name>
82 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
83 <distribution>repo</distribution>
84 </license>
85 </licenses>
86
87 <modules>
88 <module>core</module>
89 <module>extensions</module>
90 </modules>
91
92 <properties>
93 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
94 <guice.api.version>1.3</guice.api.version>
95 </properties>
96
97 <dependencies>
sberlinb0852382010-08-01 19:55:08 +000098 <dependency>
mccullsbc7e1502010-10-21 23:36:09 +000099 <groupId>junit</groupId>
100 <artifactId>junit</artifactId>
101 <scope>test</scope>
sberlinb0852382010-08-01 19:55:08 +0000102 </dependency>
crazybobleeac266a22007-02-26 00:07:01 +0000103 </dependencies>
mccullsbc7e1502010-10-21 23:36:09 +0000104
105 <dependencyManagement>
106 <dependencies>
107
108 <dependency>
109 <groupId>biz.aQute</groupId>
110 <artifactId>bnd</artifactId>
111 <version>0.0.384</version>
112 </dependency>
113
114 <dependency>
115 <groupId>javax.inject</groupId>
116 <artifactId>javax.inject</artifactId>
117 <version>1</version>
118 </dependency>
119 <dependency>
120 <groupId>javax.inject</groupId>
121 <artifactId>javax.inject-tck</artifactId>
122 <version>1</version>
123 </dependency>
124 <dependency>
125 <groupId>aopalliance</groupId>
126 <artifactId>aopalliance</artifactId>
127 <version>1.0</version>
128 </dependency>
129
130 <dependency>
131 <groupId>asm</groupId>
132 <artifactId>asm</artifactId>
133 <version>3.1</version>
134 </dependency>
135
136 <dependency>
137 <groupId>org.osgi</groupId>
138 <artifactId>org.osgi.core</artifactId>
139 <version>4.2.0</version>
140 </dependency>
141 <dependency>
142 <groupId>org.osgi</groupId>
143 <artifactId>org.osgi.compendium</artifactId>
144 <version>4.2.0</version>
145 </dependency>
146 <dependency>
147 <groupId>org.apache.felix</groupId>
148 <artifactId>org.apache.felix.framework</artifactId>
149 <version>3.0.2</version>
150 </dependency>
151
152 <dependency>
153 <groupId>org.springframework</groupId>
154 <artifactId>spring-beans</artifactId>
155 <version>2.5.6</version>
156 </dependency>
157
158 <dependency>
159 <groupId>junit</groupId>
160 <artifactId>junit</artifactId>
161 <version>3.8.2</version>
162 </dependency>
163
164 </dependencies>
165 </dependencyManagement>
166
167 <build>
168 <sourceDirectory>${project.basedir}/src</sourceDirectory>
169 <resources>
170 <resource>
171 <filtering>false</filtering>
172 <directory>${project.basedir}/src</directory>
173 <excludes>
174 <exclude>**/*.java</exclude>
175 </excludes>
176 </resource>
177 </resources>
178 <testSourceDirectory>${project.basedir}/test</testSourceDirectory>
179 <testResources>
180 <testResource>
181 <filtering>false</filtering>
182 <directory>${project.basedir}/test</directory>
183 <excludes>
184 <exclude>**/*.java</exclude>
185 </excludes>
186 </testResource>
187 </testResources>
188 <pluginManagement>
189 <plugins>
190 <plugin>
191 <artifactId>maven-compiler-plugin</artifactId>
192 <version>2.3.2</version>
193 </plugin>
194 <plugin>
195 <groupId>org.codehaus.mojo</groupId>
196 <artifactId>animal-sniffer-maven-plugin</artifactId>
197 <version>1.6</version>
198 <configuration>
199 <signature>
200 <groupId>org.codehaus.mojo.signature</groupId>
201 <artifactId>java15</artifactId>
202 <version>1.0</version>
203 </signature>
204 </configuration>
205 <executions>
206 <execution>
207 <id>check-java-1.5-compat</id>
208 <phase>process-classes</phase>
209 <goals>
210 <goal>check</goal>
211 </goals>
212 </execution>
213 </executions>
214 </plugin>
215 <plugin>
216 <artifactId>maven-surefire-plugin</artifactId>
217 <version>2.6</version>
218 <configuration>
219 <redirectTestOutputToFile>true</redirectTestOutputToFile>
220 </configuration>
221 </plugin>
222 <plugin>
223 <groupId>org.apache.felix</groupId>
224 <artifactId>maven-bundle-plugin</artifactId>
225 <version>2.1.0</version>
226 <configuration>
227 <instructions>
228 <Bundle-Copyright>Copyright (C) 2006 Google Inc.</Bundle-Copyright>
229 <Bundle-DocURL>http://code.google.com/p/google-guice/</Bundle-DocURL>
230 <Bundle-RequiredExecutionEnvironment>
231 J2SE-1.5,JavaSE-1.6
232 </Bundle-RequiredExecutionEnvironment>
233 <Import-Package>!com.google.inject.*,*</Import-Package>
234 <_exportcontents>!*.internal.*,com.google.inject.*;version=${guice.api.version}</_exportcontents>
235 <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
236 <_nouses>true</_nouses>
237 <_removeheaders>
238 Embed-Dependency,Embed-Transitive,
239 Built-By,Tool,Created-By,Build-Jdk,
240 Originally-Created-By,Archiver-Version,
241 Include-Resource,Private-Package,
242 Ignore-Package,Bnd-LastModified
243 </_removeheaders>
244 </instructions>
245 </configuration>
246 <executions>
247 <execution>
248 <phase>prepare-package</phase>
249 <goals>
250 <goal>manifest</goal>
251 </goals>
252 </execution>
253 </executions>
254 </plugin>
255 <plugin>
256 <artifactId>maven-jar-plugin</artifactId>
257 <version>2.3.1</version>
258 <configuration>
259 <archive>
260 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
261 </archive>
262 </configuration>
263 <executions>
264 <execution>
265 <phase>package</phase>
266 <goals>
267 <goal>test-jar</goal>
268 </goals>
269 </execution>
270 </executions>
271 </plugin>
272 <plugin>
273 <artifactId>maven-javadoc-plugin</artifactId>
274 <version>2.7</version>
275 </plugin>
276 <plugin>
277 <artifactId>maven-source-plugin</artifactId>
278 <version>2.1.2</version>
279 </plugin>
280 <plugin>
281 <artifactId>maven-gpg-plugin</artifactId>
282 <version>1.1</version>
283 </plugin>
284 <plugin>
285 <artifactId>maven-release-plugin</artifactId>
286 <version>2.1</version>
287 <configuration>
288 <autoVersionSubmodules>true</autoVersionSubmodules>
289 </configuration>
290 </plugin>
291 </plugins>
292 </pluginManagement>
293 <plugins>
294 <plugin>
295 <groupId>org.codehaus.mojo</groupId>
296 <artifactId>animal-sniffer-maven-plugin</artifactId>
297 </plugin>
298 </plugins>
299 </build>
300
mcculls88153582010-10-22 00:01:07 +0000301 <profiles>
302 <profile>
303 <id>sonatype-grid</id>
mccullsec491882010-10-22 00:10:06 +0000304 <properties>
305 <forgeReleaseId>forge-releases</forgeReleaseId>
306 <forgeReleaseUrl>http://repository.sonatype.org:8081/service/local/staging/deploy/maven2</forgeReleaseUrl>
307 <forgeSnapshotId>forge-snapshots</forgeSnapshotId>
308 <forgeSnapshotUrl>http://repository.sonatype.org/content/repositories/snapshots</forgeSnapshotUrl>
309 </properties>
mcculls88153582010-10-22 00:01:07 +0000310 <distributionManagement>
311 <repository>
mccullsec491882010-10-22 00:10:06 +0000312 <id>${forgeReleaseId}</id>
313 <url>${forgeReleaseUrl}</url>
mcculls88153582010-10-22 00:01:07 +0000314 </repository>
315 <snapshotRepository>
mccullsec491882010-10-22 00:10:06 +0000316 <id>${forgeSnapshotId}</id>
317 <url>${forgeSnapshotUrl}</url>
mcculls88153582010-10-22 00:01:07 +0000318 </snapshotRepository>
319 </distributionManagement>
320 </profile>
321 </profiles>
322
crazybobleeac266a22007-02-26 00:07:01 +0000323</project>