Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2009-09-09 21:06:31 +0000
committerJoakim Erdfelt2009-09-09 21:06:31 +0000
commit9769da72e4dbf81cb2df80192a455f122997d245 (patch)
tree717953680ba14fed870fe854818ca2661c89d13a /jetty-distribution/pom.xml
parent7420977b97b7231daa976a191391d7ffe979f0dc (diff)
downloadorg.eclipse.jetty.project-9769da72e4dbf81cb2df80192a455f122997d245.tar.gz
org.eclipse.jetty.project-9769da72e4dbf81cb2df80192a455f122997d245.tar.xz
org.eclipse.jetty.project-9769da72e4dbf81cb2df80192a455f122997d245.zip
Adding slf4j to distro
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@853 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'jetty-distribution/pom.xml')
-rw-r--r--jetty-distribution/pom.xml34
1 files changed, 32 insertions, 2 deletions
diff --git a/jetty-distribution/pom.xml b/jetty-distribution/pom.xml
index a0b375597d..2668d68acc 100644
--- a/jetty-distribution/pom.xml
+++ b/jetty-distribution/pom.xml
@@ -10,6 +10,7 @@
<packaging>pom</packaging>
<properties>
<assembly.directory>target/distribution</assembly.directory>
+ <slf4j.version>1.5.6</slf4j.version>
</properties>
<build>
<plugins>
@@ -26,8 +27,8 @@
<goal>resources</goal>
</goals>
</execution>
- </executions>
- </plugin>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
@@ -301,6 +302,35 @@
<includes>**</includes>
<outputDirectory>${assembly.directory}/lib/centralized-logging</outputDirectory>
</artifactItem>
+ <!-- SLF4J Dependencies (that jetty-centralized-logging needs) -->
+ <artifactItem>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>${slf4j.version}</version>
+ <type>jar</type>
+ <overWrite>true</overWrite>
+ <includes>**</includes>
+ <outputDirectory>${assembly.directory}/lib/centralized-logging</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jcl-over-slf4j</artifactId>
+ <version>${slf4j.version}</version>
+ <type>jar</type>
+ <overWrite>true</overWrite>
+ <includes>**</includes>
+ <outputDirectory>${assembly.directory}/lib/centralized-logging</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.slf4j</groupId>
+ <artifactId>log4j-over-slf4j</artifactId>
+ <version>${slf4j.version}</version>
+ <type>jar</type>
+ <overWrite>true</overWrite>
+ <includes>**</includes>
+ <outputDirectory>${assembly.directory}/lib/centralized-logging</outputDirectory>
+ </artifactItem>
+ <!-- Jetty Deploy -->
<artifactItem>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-deploy</artifactId>

Back to the top