Skip to content

Commit 8e18f4f

Browse files
Reference standard Apache parent POM. This addresses some of the issues in XALANJ-2650 and XALANJ-2731
1 parent 5d9e511 commit 8e18f4f

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

pom.xml

+12-1
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,28 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<!-- KNOWN ISSUES:
66
"Production" tgz/zip files need to be copied to ant-like build/
7-
xalan-test integration
7+
as temporary xalan-test integration
88
99
Footnote: To get dependency tree from a multi-module project, use the
1010
command "mvn compile dependency:tree" so everything is in scope.
1111
-->
1212
<packaging>pom</packaging>
1313

14+
<parent>
15+
<groupId>org.apache</groupId>
16+
<artifactId>apache</artifactId>
17+
<version>23</version>
18+
</parent>
19+
1420
<modelVersion>4.0.0</modelVersion>
1521
<groupId>xalan</groupId>
1622
<artifactId>xalan-j</artifactId>
1723
<version>2.7.3</version>
24+
<licenses>
25+
<license>
26+
<name>Apache-2.0</name>
27+
</license>
28+
</licenses>
1829

1930
<properties>
2031
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

serializer/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
<artifactId>serializer</artifactId>
1212
<name>Apache XML Serializer</name>
1313
<description>Apache's XML serialization layer, as used in the Xalan XSLT processor</description>
14+
<licenses>
15+
<license>
16+
<name>Apache-2.0</name>
17+
</license>
18+
</licenses>
1419

1520
<dependencies>
1621
<!-- For javadoc generation only, hence 'provided' scope -->

serializer/src/main/java/MANIFEST.SERIALIZER

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Manifest-Version: 1.0
22
Created-By: @java.version@ (@java.vendor@)
33
Main-Class: org.apache.xml.serializer.Version
44
Class-Path: xml-apis.jar
5+
Bundle-License: Apache-2.0; link="http://opensource.org/licenses/apache2.0.php"
56

67
Name: org/apache/xml/serializer/
78
Comment: Serializer to write out XML, HTML etc. as a stream of characters from an input DOM or from input SAX events.

xalan/src/main/java/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Created-By: @java.version@ (@java.vendor@)
33
Main-Class: org.apache.xalan.xslt.Process
44
Class-Path: xercesImpl.jar xml-apis.jar serializer.jar
5-
5+
Bundle-License: Apache-2.0; link="http://opensource.org/licenses/apache2.0.php"
66

77
Name: org/apache/xalan/
88
Comment: Main Xalan engine implementing TrAX/JAXP

0 commit comments

Comments
 (0)