[java-idp-jetty-base] 07/13: IDP-1110 - Copy logging dependencies via Maven

Tom Zeller tzeller at dragonacea.biz
Wed Jun 14 18:34:04 EDT 2017


This is an automated email from the git hooks/post-receive script.

tzeller pushed a commit to branch 9.4
in repository java-idp-jetty-base.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-jetty-base.git;a=commit;h=167e1595275964880df1decc8d20305fb14156ab

commit 167e1595275964880df1decc8d20305fb14156ab
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Wed Jun 14 16:52:14 2017 -0500

    IDP-1110 - Copy logging dependencies via Maven
---
 pom.xml | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/pom.xml b/pom.xml
index 5e55834..9d06a9a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -109,6 +109,52 @@
                             </artifactItems>
                         </configuration>
                     </execution>
+                    <!-- Copy SLF4J logging dependencies to jetty-base/lib/slf4j directory. -->
+                    <execution>
+                        <id>copy-jetty-logging-slf4j</id>
+                        <phase>prepare-package</phase>
+                        <goals>
+                            <goal>copy</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>${slf4j.groupId}</groupId>
+                                    <artifactId>slf4j-api</artifactId>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>${slf4j.groupId}</groupId>
+                                    <artifactId>jcl-over-slf4j</artifactId>
+                                </artifactItem>
+                            </artifactItems>
+                            <outputDirectory>${assemblyDirectory}/jetty-base/lib/slf4j/</outputDirectory>
+                        </configuration>
+                    </execution>
+                    <!-- Copy Logback logging dependencies to jetty-base/lib/logback directory. -->
+                    <execution>
+                        <id>copy-jetty-logging-logback</id>
+                        <phase>prepare-package</phase>
+                        <goals>
+                            <goal>copy</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>ch.qos.logback</groupId>
+                                    <artifactId>logback-classic</artifactId>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>ch.qos.logback</groupId>
+                                    <artifactId>logback-core</artifactId>
+                                </artifactItem>
+                                <artifactItem>
+                                    <groupId>ch.qos.logback</groupId>
+                                    <artifactId>logback-access</artifactId>
+                                </artifactItem>
+                            </artifactItems>
+                            <outputDirectory>${assemblyDirectory}/jetty-base/lib/logback/</outputDirectory>
+                        </configuration>
+                    </execution>
                 </executions>
             </plugin>
             <plugin>

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list