[java-idp-tomcat-base] 05/06: Add Java Server Tag Library to tomcat-base/lib/.

Tom Zeller tzeller at dragonacea.biz
Tue Jul 12 16:10:08 EDT 2016


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

tzeller pushed a commit to branch master
in repository java-idp-tomcat-base.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-tomcat-base.git;a=commit;h=3c28de3c2bbbfa456186ad4917c710b421430f04

commit 3c28de3c2bbbfa456186ad4917c710b421430f04
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Fri Jul 8 16:18:13 2016 -0500

    Add Java Server Tag Library to tomcat-base/lib/.
---
 pom.xml | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/pom.xml b/pom.xml
index b46a494..18b7734 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,6 +17,7 @@
 
     <properties>
         <assemblyDirectory>${project.build.directory}/idp-example-tomcat-base</assemblyDirectory>
+        <jstl.version>1.2</jstl.version>
     </properties>
 
     <repositories>
@@ -75,6 +76,30 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <executions>
+                    <!-- Copy Java Server Tag Library to tomcat-base/lib directory. -->
+                    <execution>
+                        <id>copy-jstl</id>
+                        <phase>prepare-package</phase>
+                        <goals>
+                            <goal>copy</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>javax.servlet</groupId>
+                                    <artifactId>jstl</artifactId>
+                                    <version>${jstl.version}</version>
+                                    <type>jar</type>
+                                    <outputDirectory>${assemblyDirectory}/tomcat-base/lib/</outputDirectory>
+                                </artifactItem>
+                            </artifactItems>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
             <!-- Assemble -->
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>

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


More information about the commits mailing list