You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by jk...@apache.org on 2023/12/20 02:48:46 UTC

(xalan-java) branch xalan-java-mvn-refactored updated: Copy taglet artifacts to build dir for xalan-test

This is an automated email from the ASF dual-hosted git repository.

jkesselm pushed a commit to branch xalan-java-mvn-refactored
in repository https://gitbox.apache.org/repos/asf/xalan-java.git


The following commit(s) were added to refs/heads/xalan-java-mvn-refactored by this push:
     new af4d73ce Copy taglet artifacts to build dir for xalan-test
     new b9a76e8e Merge pull request #142 from kriegaex/copy-taglet-jars-to-build-dir
af4d73ce is described below

commit af4d73cefd4642dad393e1f1b91ebf3a566a0acc
Author: Alexander Kriegisch <Al...@Kriegisch.name>
AuthorDate: Wed Dec 20 09:45:32 2023 +0700

    Copy taglet artifacts to build dir for xalan-test
    
    That should make it easier for the tests running in a separate Ant
    project to predict where to find the respective JDK 8 or 9+ taglet JARs.
---
 xalan2jtaglet/pom.xml      | 15 +++++++++++++--
 xalan2jtaglet_jdk9/pom.xml | 10 ++++++++--
 2 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/xalan2jtaglet/pom.xml b/xalan2jtaglet/pom.xml
index 76b2c83a..c9d40409 100644
--- a/xalan2jtaglet/pom.xml
+++ b/xalan2jtaglet/pom.xml
@@ -1,5 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
@@ -27,4 +27,15 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <!-- Copy generated jarfile up to xalan-java/build/,
+           for backward compatibility with Ant builds. -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>
diff --git a/xalan2jtaglet_jdk9/pom.xml b/xalan2jtaglet_jdk9/pom.xml
index f515f9c9..f79c3115 100644
--- a/xalan2jtaglet_jdk9/pom.xml
+++ b/xalan2jtaglet_jdk9/pom.xml
@@ -1,5 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" 
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <parent>
@@ -27,6 +27,12 @@
           <target>9</target>
         </configuration>
       </plugin>
+      <!-- Copy generated jarfile up to xalan-java/build/,
+           for backward compatibility with Ant builds. -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+      </plugin>
     </plugins>
   </build>
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xalan.apache.org
For additional commands, e-mail: commits-help@xalan.apache.org