blob: 82b8f45628b5602b0c048f3888a6b04de987f60a [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 Gulcu55a650f2006-11-04 18:35:32 +00008 <version>1.0-SNAPSHOT</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
Ceki Gulcu55a650f2006-11-04 18:35:32 +000015 <properties>
16 <aversion>1.1.0-RC0</aversion>
17 </properties>
18
Ceki Gulcu83412492006-09-05 20:48:47 +000019 <organization>
20 <name>QOS.ch</name>
21 <url>http://www.qos.ch</url>
22 </organization>
23 <inceptionYear>2005</inceptionYear>
24
25 <modules>
26 <module>slf4j-api</module>
27 <module>slf4j-simple</module>
28 <module>slf4j-nop</module>
29 <module>slf4j-jdk14</module>
30 <module>slf4j-log4j12</module>
31 <module>slf4j-jcl</module>
32 <module>jcl104-over-slf4j</module>
Ceki Gulcua0a881b2006-09-11 22:08:20 +000033 <module>log4j-over-slf4j</module>
Ceki Gulcu83412492006-09-05 20:48:47 +000034 <module>slf4j-site</module>
Ceki Gulcu83412492006-09-05 20:48:47 +000035 <module>slf4j-archetype</module>
Ceki Gulcua0a881b2006-09-11 22:08:20 +000036
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 Gulcu83412492006-09-05 20:48:47 +000049
50 <dependencyManagement>
51 <dependencies/>
52 </dependencyManagement>
53
54 <build>
55 <plugins>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-compiler-plugin</artifactId>
59 <configuration>
60 <source>1.4</source>
61 <target>1.4</target>
62 </configuration>
63 </plugin>
64
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-surefire-plugin</artifactId>
68 <configuration>
69 <forkMode>once</forkMode>
70 <reportFormat>plain</reportFormat>
71 <trimStackTrace>false</trimStackTrace>
72 <excludes>
73 <exclude>**/AllTest.java</exclude>
74 <exclude>**/PackageTest.java</exclude>
75 </excludes>
76 </configuration>
77 </plugin>
78
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-source-plugin</artifactId>
82 <executions>
83 <execution>
84 <phase>package</phase>
85 <goals>
86 <goal>jar</goal>
87 </goals>
88 </execution>
89 </executions>
90 </plugin>
91
92 <plugin>
93 <groupId>org.apache.maven.plugins</groupId>
94 <artifactId>maven-javadoc-plugin</artifactId>
95 <configuration>
96 <destDir>/target/site/api</destDir>
97 <aggregate>true</aggregate>
98 <links>
99 <link>
100 http://java.sun.com/j2se/1.5.0/docs/api
101 </link>
102 </links>
103 <groups>
104 <group>
105 <title>SLF4J packages</title>
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000106 <packages>org.slf4j:org.slf4j.*</packages>
Ceki Gulcu83412492006-09-05 20:48:47 +0000107 </group>
108 <group>
109 <title>Jakarta Commons Logging packages</title>
110 <packages>org.apache.commons.*</packages>
111 </group>
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000112
113 <group>
114 <title>Apache log4j</title>
115 <packages>org.apache.log4j</packages>
116 </group>
117
Ceki Gulcu83412492006-09-05 20:48:47 +0000118 </groups>
119 </configuration>
120 </plugin>
121
122 </plugins>
123
124 </build>
125
Ceki Gulcu55a650f2006-11-04 18:35:32 +0000126 <profiles>
127 <profile>
128 <id>skipTests</id>
129 <properties>
130 <maven.test.skip>true</maven.test.skip>
131 </properties>
132 </profile>
133 </profiles>
134
Ceki Gulcu83412492006-09-05 20:48:47 +0000135
136 <reporting>
137 <plugins>
138 <plugin>
139 <groupId>org.apache.maven.plugins</groupId>
140 <artifactId>maven-site-plugin</artifactId>
141 </plugin>
142
143 <plugin>
144 <groupId>org.apache.maven.plugins</groupId>
145 <artifactId>maven-project-info-reports-plugin</artifactId>
146 <reportSets>
147 <reportSet><reports/></reportSet>
148 </reportSets>
149 </plugin>
150
151 <plugin>
Ceki Gulcu55a650f2006-11-04 18:35:32 +0000152 <artifactId>maven-assembly-plugin</artifactId>
153 <version>2.1</version>
154 <configuration>
155 <descriptors>
156 <descriptor>
157 src/main/assembly/source.xml
158 </descriptor>
159 </descriptors>
Ceki Gulcu83412492006-09-05 20:48:47 +0000160 <finalName>slf4j-${project.version}</finalName>
161 <appendAssemblyId>false</appendAssemblyId>
162 <outputDirectory>target/site/dist/</outputDirectory>
163 </configuration>
164 </plugin>
165
166 </plugins>
167
168 </reporting>
169
Sebastien Pennec2975f372006-09-13 12:31:38 +0000170
171 <scm>
172 <connection>http://svn.slf4j.org/repos/slf4j/trunk</connection>
173 <developerConnection>scm:svn:https://svn.slf4j.org/repos/slf4j/trunk</developerConnection>
174 <url>http://svn.slf4j.org/viewvc/slf4j/trunk/</url>
175 </scm>
176
Ceki Gulcua0a881b2006-09-11 22:08:20 +0000177 <distributionManagement>
178 <site>
179 <id>pixie</id>
180 <url>scp://pixie/var/www/www.slf4j.org/htdocs/</url>
181 </site>
182 </distributionManagement>
Ceki Gulcu83412492006-09-05 20:48:47 +0000183
Ceki Gulcuddce3632006-08-14 20:34:26 +0000184</project>