[java-idp-tomcat-base] 01/06: Copy tomcat-juli to tomcat-base/bin/.
Tom Zeller
tzeller at dragonacea.biz
Tue Jul 12 16:10:26 EDT 2016
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch 8.0
in repository java-idp-tomcat-base.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-tomcat-base.git;a=commit;h=432542f53ab081335913f32d28becf9981933716
commit 432542f53ab081335913f32d28becf9981933716
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Fri Jul 8 16:21:35 2016 -0500
Copy tomcat-juli to tomcat-base/bin/.
---
pom.xml | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/pom.xml b/pom.xml
index 18b7734..b0d8b33 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,10 +14,12 @@
<groupId>net.shibboleth.idp.example</groupId>
<artifactId>idp-example-tomcat-base</artifactId>
<packaging>pom</packaging>
+ <version>8.0.0-SNAPSHOT</version>
<properties>
<assemblyDirectory>${project.build.directory}/idp-example-tomcat-base</assemblyDirectory>
<jstl.version>1.2</jstl.version>
+ <tomcat.version>8.0.36</tomcat.version>
</properties>
<repositories>
@@ -98,6 +100,26 @@
</artifactItems>
</configuration>
</execution>
+ <!-- Copy tomcat-juli to tomcat-base/bin directory. -->
+ <execution>
+ <id>copy-tomcat-juli</id>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.apache.tomcat</groupId>
+ <artifactId>tomcat-juli</artifactId>
+ <version>${tomcat.version}</version>
+ <type>jar</type>
+ <overWrite>false</overWrite>
+ <outputDirectory>${assemblyDirectory}/tomcat-base/bin</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
</executions>
</plugin>
<!-- Assemble -->
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list