Skip to content

Commit

Permalink
Reference standard Apache parent POM. This addresses some of the issu…
Browse files Browse the repository at this point in the history
…es in XALANJ-2650 and XALANJ-2731
  • Loading branch information
kubycsolutions committed Mar 25, 2024
1 parent 5d9e511 commit 8e18f4f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,28 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- KNOWN ISSUES:
"Production" tgz/zip files need to be copied to ant-like build/
xalan-test integration
as temporary xalan-test integration
Footnote: To get dependency tree from a multi-module project, use the
command "mvn compile dependency:tree" so everything is in scope.
-->
<packaging>pom</packaging>

<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>23</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>xalan</groupId>
<artifactId>xalan-j</artifactId>
<version>2.7.3</version>
<licenses>
<license>
<name>Apache-2.0</name>
</license>
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
5 changes: 5 additions & 0 deletions serializer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
<artifactId>serializer</artifactId>
<name>Apache XML Serializer</name>
<description>Apache's XML serialization layer, as used in the Xalan XSLT processor</description>
<licenses>
<license>
<name>Apache-2.0</name>
</license>
</licenses>

<dependencies>
<!-- For javadoc generation only, hence 'provided' scope -->
Expand Down
1 change: 1 addition & 0 deletions serializer/src/main/java/MANIFEST.SERIALIZER
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Manifest-Version: 1.0
Created-By: @java.version@ (@java.vendor@)
Main-Class: org.apache.xml.serializer.Version
Class-Path: xml-apis.jar
Bundle-License: Apache-2.0; link="http://opensource.org/licenses/apache2.0.php"

Name: org/apache/xml/serializer/
Comment: Serializer to write out XML, HTML etc. as a stream of characters from an input DOM or from input SAX events.
Expand Down
2 changes: 1 addition & 1 deletion xalan/src/main/java/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Created-By: @java.version@ (@java.vendor@)
Main-Class: org.apache.xalan.xslt.Process
Class-Path: xercesImpl.jar xml-apis.jar serializer.jar

Bundle-License: Apache-2.0; link="http://opensource.org/licenses/apache2.0.php"

Name: org/apache/xalan/
Comment: Main Xalan engine implementing TrAX/JAXP
Expand Down

0 comments on commit 8e18f4f

Please sign in to comment.