[libxmltooling-java] 02/05: Work round some infelicities in the supplied POM
Matthew Vernon
matthew at moszumanska.debian.org
Thu Apr 10 17:08:22 UTC 2014
This is an automated email from the git hooks/post-receive script.
matthew pushed a commit to branch feature/newerbc
in repository libxmltooling-java.
commit 6aa55924f727d49fd08633f7ff7fb0ee7931132b
Author: Matthew Vernon <matthew at debian.org>
Date: Mon Feb 17 16:24:24 2014 +0000
Work round some infelicities in the supplied POM
Two classes of change here:
i) add versions to some dependencies which otherwise maven chokes on
ii) deal with groupids of the form ${xalan.groupId} - we can handle
them in maven.rules, but that results in a POM file getting installed
which includes those maven rules, and the result is invalid XML.
---
pom.xml | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/pom.xml b/pom.xml
index 410694a..5216d7f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -80,23 +80,26 @@
<!-- Runtime dependencies -->
<dependency>
- <groupId>${xerces.groupId}</groupId>
+ <groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
+ <version>debian</version>
</dependency>
<dependency>
- <groupId>${xerces.groupId}</groupId>
+ <groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
+ <version>debian</version>
</dependency>
<dependency>
- <groupId>${xerces.groupId}</groupId>
+ <groupId>xalan</groupId>
<artifactId>serializer</artifactId>
+ <version>debian</version>
</dependency>
<dependency>
<groupId>xml-resolver</groupId>
<artifactId>xml-resolver</artifactId>
</dependency>
<dependency>
- <groupId>${xalan.groupId}</groupId>
+ <groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</dependency>
@@ -104,6 +107,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
+ <version>debian</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libxmltooling-java.git
More information about the pkg-java-commits
mailing list