blob: 2570a564f29939b24375c5b3f5ce9aa9dcbcf944 [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 Gulcu29370902007-07-12 20:18:50 +00008 <version>1.4.2</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 Gulcu84f0f6b2007-02-22 19:15:56 +000021 <properties>
Ceki Gulcue0af3802007-02-25 16:18:57 +000022 <!-- <project_version_for_osgi>1.3.0</project_version_for_osgi> -->
Ceki Gulcua5c1e472007-02-25 16:57:35 +000023 <pv4osgi>1.3.1</pv4osgi>
Ceki Gulcu84f0f6b2007-02-22 19:15:56 +000024 </properties>
25
Ceki Gulcu83412492006-09-05 20:48:47 +000026 <modules>
27 <module>slf4j-api</module>
28 <module>slf4j-simple</module>
29 <module>slf4j-nop</module>
30 <module>slf4j-jdk14</module>
31 <module>slf4j-log4j12</module>
32 <module>slf4j-jcl</module>
33 <module>jcl104-over-slf4j</module>
Ceki Gulcu14797602007-07-09 20:24:02 +000034 <module>log4j-over-slf4j</module>
Ceki Gulcu83412492006-09-05 20:48:47 +000035 <module>slf4j-site</module>
Jean-Noel Charpine31c4aa2007-08-03 09:08:16 +000036 <module>slf4j-converter</module>
Ceki Gulcu83412492006-09-05 20:48:47 +000037 </modules>
38
39 <dependencies>
40 <dependency>
41 <groupId>junit</groupId>
42 <artifactId>junit</artifactId>
43 <version>3.8.1</version>
44 <scope>test</scope>
45 </dependency>
46 </dependencies>
Ceki Gulcu55a650f2006-11-04 18:35:32 +000047
48
Ceki Gulcu2a40c062007-05-18 20:57:38 +000049 <dependencyManagement>
50 <dependencies>
51
52 <dependency>
53 <groupId>${project.groupId}</groupId>
54 <artifactId>slf4j-api</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57
58 <dependency>
59 <groupId>log4j</groupId>
60 <artifactId>log4j</artifactId>
61 <version>1.2.13</version>
62 </dependency>
63
64 </dependencies>
65 </dependencyManagement>
66
Ceki Gulcu83412492006-09-05 20:48:47 +000067
68 <build>
Ceki Gulcua1149da2007-08-20 18:10:22 +000069 <resources>
70 <resource>
71 <directory>src/main/resources</directory>
72 <filtering>true</filtering>
73 </resource>
74 </resources>
Ceki Gulcu83412492006-09-05 20:48:47 +000075 <plugins>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-compiler-plugin</artifactId>
79 <configuration>
Ceki Gulcu877ae042007-01-29 21:16:43 +000080 <source>1.3</source>
81 <target>1.3</target>
Ceki Gulcu83412492006-09-05 20:48:47 +000082 </configuration>
83 </plugin>
84
85 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-surefire-plugin</artifactId>
88 <configuration>
89 <forkMode>once</forkMode>
90 <reportFormat>plain</reportFormat>
91 <trimStackTrace>false</trimStackTrace>
92 <excludes>
93 <exclude>**/AllTest.java</exclude>
94 <exclude>**/PackageTest.java</exclude>
95 </excludes>
96 </configuration>
97 </plugin>
98
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-source-plugin</artifactId>
102 <executions>
103 <execution>
104 <phase>package</phase>
105 <goals>
106 <goal>jar</goal>
107 </goals>
108 </execution>
109 </executions>
110 </plugin>
111
112 <plugin>
113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-javadoc-plugin</artifactId>
115 <configuration>
116 <destDir>/target/site/api</destDir>
117 <aggregate>true</aggregate>
118 <links>
119 <link>
120 http://java.sun.com/j2se/1.5.0/docs/api
121 </link>
122 </links>
123 <groups>
124 <group>
125 <title>SLF4J packages</title>
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000126 <packages>org.slf4j:org.slf4j.*</packages>
Ceki Gulcu83412492006-09-05 20:48:47 +0000127 </group>
128 <group>
129 <title>Jakarta Commons Logging packages</title>
130 <packages>org.apache.commons.*</packages>
131 </group>
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000132
133 <group>
134 <title>Apache log4j</title>
135 <packages>org.apache.log4j</packages>
136 </group>
137
Ceki Gulcu83412492006-09-05 20:48:47 +0000138 </groups>
139 </configuration>
140 </plugin>
141
142 </plugins>
143
144 </build>
145
Ceki Gulcu55a650f2006-11-04 18:35:32 +0000146 <profiles>
147 <profile>
148 <id>skipTests</id>
149 <properties>
150 <maven.test.skip>true</maven.test.skip>
151 </properties>
152 </profile>
John E. Conlon426da1d2007-02-16 21:03:05 +0000153 <profile>
154 <id>osgi</id>
155 <modules>
156 <module>osgi-over-slf4j</module>
Ceki Gulcu0740cb12007-02-18 17:50:26 +0000157 <module>slf4j-osgi-test-bundle</module>
158 <module>slf4j-osgi-integration-test</module>
John E. Conlon426da1d2007-02-16 21:03:05 +0000159 </modules>
Ceki Gulcu0740cb12007-02-18 17:50:26 +0000160
161 <repositories>
162 <repository>
163 <id>m2apache.snapshots</id>
164 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
165 <releases>
166 <enabled>false</enabled>
167 </releases>
168 <snapshots>
169 <enabled>true</enabled>
170 </snapshots>
171 </repository>
172
173 <repository>
174 <id>springframework.org</id>
175 <name>Springframework Maven SNAPSHOT Repository</name>
176 <url>http://static.springframework.org/maven2-snapshots/</url>
177 <snapshots>
178 <enabled>true</enabled>
179 </snapshots>
180 </repository>
181
182 </repositories>
183
184 <pluginRepositories>
185 <pluginRepository>
186 <id>apache.snapshots</id>
187 <name>Apache Snapshot Plugin Repository</name>
188 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
189 <releases>
190 <enabled>false</enabled>
191 </releases>
192 <snapshots>
193 <enabled>true</enabled>
194 </snapshots>
195 </pluginRepository>
196 </pluginRepositories>
197
John E. Conlon426da1d2007-02-16 21:03:05 +0000198 </profile>
Ceki Gulcu55a650f2006-11-04 18:35:32 +0000199 </profiles>
200
Sebastien Pennec06f1fc72007-02-06 18:48:40 +0000201 <pluginRepositories>
202 <pluginRepository>
203 <id>apache.snapshots</id>
204 <name>Apache Snapshot Plugin Repository</name>
205 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
206 <releases>
John E. Conlonfe3885e2007-02-06 21:01:59 +0000207 <enabled>false</enabled>
Sebastien Pennec06f1fc72007-02-06 18:48:40 +0000208 </releases>
209 <snapshots>
Ceki Gulcu0740cb12007-02-18 17:50:26 +0000210 <enabled>true</enabled>
211 </snapshots>
Sebastien Pennec06f1fc72007-02-06 18:48:40 +0000212 </pluginRepository>
213 </pluginRepositories>
214
Ceki Gulcu83412492006-09-05 20:48:47 +0000215 <reporting>
216 <plugins>
217 <plugin>
218 <groupId>org.apache.maven.plugins</groupId>
219 <artifactId>maven-site-plugin</artifactId>
220 </plugin>
221
222 <plugin>
223 <groupId>org.apache.maven.plugins</groupId>
224 <artifactId>maven-project-info-reports-plugin</artifactId>
225 <reportSets>
226 <reportSet><reports/></reportSet>
227 </reportSets>
228 </plugin>
229
230 <plugin>
Ceki Gulcu55a650f2006-11-04 18:35:32 +0000231 <artifactId>maven-assembly-plugin</artifactId>
232 <version>2.1</version>
233 <configuration>
234 <descriptors>
235 <descriptor>
236 src/main/assembly/source.xml
237 </descriptor>
238 </descriptors>
Ceki Gulcu7185b0f2006-11-16 22:54:30 +0000239 <finalName>slf4j-${project.version}</finalName>
Ceki Gulcu83412492006-09-05 20:48:47 +0000240 <appendAssemblyId>false</appendAssemblyId>
241 <outputDirectory>target/site/dist/</outputDirectory>
242 </configuration>
243 </plugin>
Ceki Gulcu7185b0f2006-11-16 22:54:30 +0000244
245 <plugin>
246 <groupId>org.apache.maven.plugins</groupId>
247 <artifactId>maven-jxr-plugin</artifactId>
248 <configuration>
249 <aggregate>true</aggregate>
Ceki Gulcub9239de2006-12-14 21:06:39 +0000250 <javadocDir>target/site/api/</javadocDir>
Ceki Gulcu7185b0f2006-11-16 22:54:30 +0000251 <linkJavadoc>true</linkJavadoc>
252 </configuration>
253 </plugin>
Ceki Gulcu83412492006-09-05 20:48:47 +0000254 </plugins>
255
256 </reporting>
257
Sebastien Pennec2975f372006-09-13 12:31:38 +0000258
259 <scm>
Ceki Gulcuc0002ed2006-11-08 22:13:36 +0000260 <connection>scm:svn:http://svn.slf4j.org/repos/slf4j/trunk</connection>
Sebastien Pennec2975f372006-09-13 12:31:38 +0000261 <developerConnection>scm:svn:https://svn.slf4j.org/repos/slf4j/trunk</developerConnection>
262 <url>http://svn.slf4j.org/viewvc/slf4j/trunk/</url>
263 </scm>
264
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000265 <distributionManagement>
266 <site>
267 <id>pixie</id>
268 <url>scp://pixie/var/www/www.slf4j.org/htdocs/</url>
269 </site>
Ceki Gulcuc0002ed2006-11-08 22:13:36 +0000270
271 <repository>
272 <id>pixie</id>
273 <url>scp://pixie/var/mvnrepo/</url>
274 </repository>
275
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000276 </distributionManagement>
Sebastien Pennec06f1fc72007-02-06 18:48:40 +0000277
Ceki Gulcuddce3632006-08-14 20:34:26 +0000278</project>