blob: 3ec46bd7bad081d6a1f77fad49975adf9fd2ba37 [file] [log] [blame]
Ceki Gulcu83412492006-09-05 20:48:47 +00001<?xml version="1.0" encoding="UTF-8"?>
2<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">
3
4 <modelVersion>4.0.0</modelVersion>
5
6 <groupId>org.slf4j</groupId>
Ceki Gulcua0a881b2006-09-11 22:08:20 +00007 <artifactId>slf4j-parent</artifactId>
Ceki Gulcu990f2412010-07-05 22:26:53 +02008 <version>1.6.1</version>
Ceki Gulcua0a881b2006-09-11 22:08:20 +00009
Ceki Gulcu83412492006-09-05 20:48:47 +000010 <packaging>pom</packaging>
11 <name>SLF4J</name>
12
Ceki Gulcu83412492006-09-05 20:48:47 +000013 <url>http://www.slf4j.org</url>
14
15 <organization>
16 <name>QOS.ch</name>
17 <url>http://www.qos.ch</url>
18 </organization>
19 <inceptionYear>2005</inceptionYear>
20
Ceki Gulcu1e3aadf2009-08-24 23:46:55 +020021 <licenses>
22 <license>
23 <name>MIT License</name>
24 <url>http://www.opensource.org/licenses/mit-license.php</url>
25 <distribution>repo</distribution>
26 </license>
27 </licenses>
28
Ceki Gulcu84f0f6b2007-02-22 19:15:56 +000029 <properties>
Ceki Gulcu71fc4292010-06-30 15:52:25 +020030 <slf4j.api.minimum.compatible.version>1.6.0</slf4j.api.minimum.compatible.version>
Ceki Gulcu86776ff2010-07-05 19:55:43 +020031 <cal10n.version>0.7.4</cal10n.version>
32 <log4j.version>1.2.16</log4j.version>
Ceki Gulcu84f0f6b2007-02-22 19:15:56 +000033 </properties>
34
Ceki Gulcue967f512009-10-28 18:49:56 +010035
Ceki Gulcu83412492006-09-05 20:48:47 +000036 <modules>
37 <module>slf4j-api</module>
Ceki Gulcuecfb1b52008-10-03 15:44:19 +000038 <module>slf4j-simple</module>
Ceki Gulcu83412492006-09-05 20:48:47 +000039 <module>slf4j-nop</module>
40 <module>slf4j-jdk14</module>
41 <module>slf4j-log4j12</module>
42 <module>slf4j-jcl</module>
Ceki Gulcuecfb1b52008-10-03 15:44:19 +000043 <module>slf4j-ext</module>
Ceki Gulcu87b72422008-06-03 21:18:51 +000044 <module>jcl-over-slf4j</module>
Ceki Gulcu14797602007-07-09 20:24:02 +000045 <module>log4j-over-slf4j</module>
Ceki Gulcu78f138e2008-05-28 20:28:49 +000046 <module>jul-to-slf4j</module>
Ceki Gulcuecfb1b52008-10-03 15:44:19 +000047 <module>integration</module>
Ceki Gulcu83412492006-09-05 20:48:47 +000048 <module>slf4j-site</module>
Ceki Gulcu5e411702008-02-21 19:06:30 +000049 <module>slf4j-migrator</module>
Ceki Gulcu83412492006-09-05 20:48:47 +000050 </modules>
51
52 <dependencies>
53 <dependency>
54 <groupId>junit</groupId>
55 <artifactId>junit</artifactId>
56 <version>3.8.1</version>
57 <scope>test</scope>
58 </dependency>
59 </dependencies>
Ceki Gulcu55a650f2006-11-04 18:35:32 +000060
61
Ceki Gulcu2a40c062007-05-18 20:57:38 +000062 <dependencyManagement>
63 <dependencies>
64
65 <dependency>
Ceki Gulcu053a98b2008-08-02 19:24:58 +000066 <groupId>org.slf4j</groupId>
Ceki Gulcu2a40c062007-05-18 20:57:38 +000067 <artifactId>slf4j-api</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70
71 <dependency>
Ceki Gulcu060c6482009-04-17 16:43:29 +000072 <groupId>org.slf4j</groupId>
73 <artifactId>slf4j-jdk14</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76
77 <dependency>
Ceki Gulcu2a40c062007-05-18 20:57:38 +000078 <groupId>log4j</groupId>
79 <artifactId>log4j</artifactId>
Ceki Gulcu1db99e32010-06-30 16:01:09 +020080 <version>${log4j.version}</version>
Ceki Gulcu2a40c062007-05-18 20:57:38 +000081 </dependency>
82
Ceki Gulcu50f843f2009-09-01 19:48:11 +020083 <dependency>
84 <groupId>ch.qos.cal10n</groupId>
85 <artifactId>cal10n-api</artifactId>
Ceki Gulcu43350ca2009-11-05 14:49:11 +010086 <version>${cal10n.version}</version>
Ceki Gulcu50f843f2009-09-01 19:48:11 +020087 </dependency>
88
Ceki Gulcu2a40c062007-05-18 20:57:38 +000089 </dependencies>
90 </dependencyManagement>
91
Ceki Gulcu83412492006-09-05 20:48:47 +000092
93 <build>
Ceki Gulcua1149da2007-08-20 18:10:22 +000094 <resources>
95 <resource>
96 <directory>src/main/resources</directory>
97 <filtering>true</filtering>
98 </resource>
99 </resources>
Ceki Gulcu738eab62007-08-20 21:27:47 +0000100
Ceki Gulcu83412492006-09-05 20:48:47 +0000101 <plugins>
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-compiler-plugin</artifactId>
105 <configuration>
Ceki Gulcu877ae042007-01-29 21:16:43 +0000106 <source>1.3</source>
107 <target>1.3</target>
Ceki Gulcu83412492006-09-05 20:48:47 +0000108 </configuration>
109 </plugin>
110
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-surefire-plugin</artifactId>
114 <configuration>
115 <forkMode>once</forkMode>
116 <reportFormat>plain</reportFormat>
117 <trimStackTrace>false</trimStackTrace>
118 <excludes>
119 <exclude>**/AllTest.java</exclude>
120 <exclude>**/PackageTest.java</exclude>
121 </excludes>
122 </configuration>
123 </plugin>
124
125 <plugin>
126 <groupId>org.apache.maven.plugins</groupId>
127 <artifactId>maven-source-plugin</artifactId>
128 <executions>
129 <execution>
130 <phase>package</phase>
131 <goals>
132 <goal>jar</goal>
133 </goals>
134 </execution>
135 </executions>
136 </plugin>
137
138 <plugin>
139 <groupId>org.apache.maven.plugins</groupId>
140 <artifactId>maven-javadoc-plugin</artifactId>
141 <configuration>
Ceki Gulcu83412492006-09-05 20:48:47 +0000142 <aggregate>true</aggregate>
Ceki Gulcuefd978c2008-04-29 17:38:38 +0000143 <excludePackageNames>org.slf4j.migrator:org.slf4j.migrator.*</excludePackageNames>
Ceki Gulcu83412492006-09-05 20:48:47 +0000144 <links>
145 <link>
146 http://java.sun.com/j2se/1.5.0/docs/api
147 </link>
148 </links>
149 <groups>
150 <group>
151 <title>SLF4J packages</title>
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000152 <packages>org.slf4j:org.slf4j.*</packages>
Ceki Gulcu83412492006-09-05 20:48:47 +0000153 </group>
Ceki Gulcuf68b5c52008-10-16 15:25:18 +0000154
155 <group>
156 <title>SLF4J extensions</title>
157 <packages>org.slf4j.profiler:org.slf4j.ext:org.slf4j.instrumentation:org.slf4j.agent</packages>
158 </group>
159
Ceki Gulcu83412492006-09-05 20:48:47 +0000160 <group>
161 <title>Jakarta Commons Logging packages</title>
162 <packages>org.apache.commons.*</packages>
163 </group>
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000164
165 <group>
166 <title>Apache log4j</title>
167 <packages>org.apache.log4j</packages>
168 </group>
169
Ceki Gulcu2fb77b12008-06-05 21:37:40 +0000170 <group>
171 <title>java.util.logging (JUL) to SLF4J bridge</title>
172 <packages>org.slf4j.bridge</packages>
173 </group>
174
Ceki Gulcu83412492006-09-05 20:48:47 +0000175 </groups>
176 </configuration>
177 </plugin>
178
Ceki Gulcue5bbca32009-11-24 00:21:59 +0100179
180 <!-- as suggested in http://bugzilla.slf4j.org/show_bug.cgi?id=152 -->
181 <plugin>
182 <groupId>org.codehaus.mojo</groupId>
183 <artifactId>build-helper-maven-plugin</artifactId>
Ceki Gulcue5bbca32009-11-24 00:21:59 +0100184 <executions>
185 <execution>
186 <id>parse-version</id>
187 <goals>
188 <goal>parse-version</goal>
189 </goals>
190 </execution>
191 </executions>
192 </plugin>
Ceki Gulcu83412492006-09-05 20:48:47 +0000193 </plugins>
194
195 </build>
196
Ceki Gulcu55a650f2006-11-04 18:35:32 +0000197 <profiles>
198 <profile>
199 <id>skipTests</id>
200 <properties>
201 <maven.test.skip>true</maven.test.skip>
202 </properties>
203 </profile>
John E. Conlon426da1d2007-02-16 21:03:05 +0000204 <profile>
205 <id>osgi</id>
206 <modules>
207 <module>osgi-over-slf4j</module>
Ceki Gulcu0740cb12007-02-18 17:50:26 +0000208 <module>slf4j-osgi-test-bundle</module>
209 <module>slf4j-osgi-integration-test</module>
John E. Conlon426da1d2007-02-16 21:03:05 +0000210 </modules>
Ceki Gulcu0740cb12007-02-18 17:50:26 +0000211
212 <repositories>
213 <repository>
214 <id>m2apache.snapshots</id>
215 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
216 <releases>
217 <enabled>false</enabled>
218 </releases>
219 <snapshots>
220 <enabled>true</enabled>
221 </snapshots>
222 </repository>
223
224 <repository>
225 <id>springframework.org</id>
226 <name>Springframework Maven SNAPSHOT Repository</name>
227 <url>http://static.springframework.org/maven2-snapshots/</url>
228 <snapshots>
229 <enabled>true</enabled>
230 </snapshots>
231 </repository>
232
233 </repositories>
234
235 <pluginRepositories>
236 <pluginRepository>
237 <id>apache.snapshots</id>
238 <name>Apache Snapshot Plugin Repository</name>
239 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
240 <releases>
241 <enabled>false</enabled>
242 </releases>
243 <snapshots>
244 <enabled>true</enabled>
245 </snapshots>
246 </pluginRepository>
247 </pluginRepositories>
248
John E. Conlon426da1d2007-02-16 21:03:05 +0000249 </profile>
Ceki Gulcub1d03d52010-05-08 12:46:15 +0200250
251
252 <profile>
253 <id>javadocjar</id>
254 <build>
255 <plugins>
256 <plugin>
257 <groupId>org.apache.maven.plugins</groupId>
258 <artifactId>maven-javadoc-plugin</artifactId>
259 <executions>
260 <execution>
261 <id>attach-javadocs</id>
262 <goals>
263 <goal>jar</goal>
264 </goals>
265 </execution>
266 </executions>
267 </plugin>
268 </plugins>
269 </build>
270 </profile>
Ceki Gulcu55a650f2006-11-04 18:35:32 +0000271 </profiles>
272
Sebastien Pennec06f1fc72007-02-06 18:48:40 +0000273 <pluginRepositories>
274 <pluginRepository>
275 <id>apache.snapshots</id>
276 <name>Apache Snapshot Plugin Repository</name>
277 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
278 <releases>
John E. Conlonfe3885e2007-02-06 21:01:59 +0000279 <enabled>false</enabled>
Sebastien Pennec06f1fc72007-02-06 18:48:40 +0000280 </releases>
281 <snapshots>
Ceki Gulcu0740cb12007-02-18 17:50:26 +0000282 <enabled>true</enabled>
283 </snapshots>
Sebastien Pennec06f1fc72007-02-06 18:48:40 +0000284 </pluginRepository>
285 </pluginRepositories>
286
Ceki Gulcu83412492006-09-05 20:48:47 +0000287 <reporting>
288 <plugins>
289 <plugin>
290 <groupId>org.apache.maven.plugins</groupId>
291 <artifactId>maven-site-plugin</artifactId>
292 </plugin>
293
294 <plugin>
295 <groupId>org.apache.maven.plugins</groupId>
296 <artifactId>maven-project-info-reports-plugin</artifactId>
297 <reportSets>
298 <reportSet><reports/></reportSet>
299 </reportSets>
300 </plugin>
301
302 <plugin>
Ceki Gulcu55a650f2006-11-04 18:35:32 +0000303 <artifactId>maven-assembly-plugin</artifactId>
304 <version>2.1</version>
305 <configuration>
306 <descriptors>
307 <descriptor>
308 src/main/assembly/source.xml
309 </descriptor>
310 </descriptors>
Ceki Gulcu7185b0f2006-11-16 22:54:30 +0000311 <finalName>slf4j-${project.version}</finalName>
Ceki Gulcu83412492006-09-05 20:48:47 +0000312 <appendAssemblyId>false</appendAssemblyId>
313 <outputDirectory>target/site/dist/</outputDirectory>
314 </configuration>
315 </plugin>
Ceki Gulcu7185b0f2006-11-16 22:54:30 +0000316
317 <plugin>
318 <groupId>org.apache.maven.plugins</groupId>
319 <artifactId>maven-jxr-plugin</artifactId>
320 <configuration>
321 <aggregate>true</aggregate>
Ceki Gulcu3178c3c2009-10-01 14:26:17 +0200322 <javadocDir>target/site/apidocs/</javadocDir>
Ceki Gulcu7185b0f2006-11-16 22:54:30 +0000323 <linkJavadoc>true</linkJavadoc>
324 </configuration>
325 </plugin>
Ceki Gulcufa9a1812008-07-23 20:34:11 +0000326
327
Ceki Gulcu83412492006-09-05 20:48:47 +0000328 </plugins>
329
330 </reporting>
331
Sebastien Pennec2975f372006-09-13 12:31:38 +0000332
333 <scm>
Ceki Gulcuc0002ed2006-11-08 22:13:36 +0000334 <connection>scm:svn:http://svn.slf4j.org/repos/slf4j/trunk</connection>
Sebastien Pennec2975f372006-09-13 12:31:38 +0000335 <developerConnection>scm:svn:https://svn.slf4j.org/repos/slf4j/trunk</developerConnection>
336 <url>http://svn.slf4j.org/viewvc/slf4j/trunk/</url>
337 </scm>
338
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000339 <distributionManagement>
340 <site>
341 <id>pixie</id>
Ceki Gulcu32c1ac02009-12-03 00:22:57 +0100342 <url>scp://pixie.qos.ch/var/www/www.slf4j.org/htdocs/</url>
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000343 </site>
Ceki Gulcuc0002ed2006-11-08 22:13:36 +0000344
345 <repository>
346 <id>pixie</id>
Ceki Gulcu32c1ac02009-12-03 00:22:57 +0100347 <url>scp://pixie.qos.ch/var/mvnrepo/</url>
Ceki Gulcuc0002ed2006-11-08 22:13:36 +0000348 </repository>
349
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000350 </distributionManagement>
Sebastien Pennec06f1fc72007-02-06 18:48:40 +0000351
Ceki Gulcuddce3632006-08-14 20:34:26 +0000352</project>