Open GoogleCodeExporter opened 9 years ago
Here's my slightly modified pom...
<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
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.cakupan</groupId>
<artifactId>cakupan</artifactId>
<version>1.5.1</version>
<packaging>jar</packaging>
<name>Cakupan</name>
<description>Cakupan XSLT test coverage tool</description>
<url>http://code.google.com/p/cakupan/</url>
<licenses>
<license>
<name>GNU GPL v2</name>
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://cakupan.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://cakupan.googlecode.com/svn/trunk/</developerConnection>
<url>http://code.google.com/p/cakupan/source/browse/</url>
</scm>
<issueManagement>
<system>Google Code Issues</system>
<url>http://code.google.com/p/cakupan/issues/list</url>
</issueManagement>
<developers>
<developer>
<id>patrick.oosterveld</id>
<name>Patrick Oosterveld</name>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-junit</artifactId>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-testutil</artifactId>
<version>1.8.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.saxon</groupId>
<artifactId>saxon</artifactId>
<version>9.1.0.8</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>xpp3</groupId>
<artifactId>xpp3</artifactId>
<version>1.1.4c</version>
</dependency>
<dependency>
<groupId>xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.2.2</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<outputDirectory>target/test/classes</outputDirectory>
<testOutputDirectory>target/test/classes</testOutputDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Original comment by schubert...@gmail.com
on 5 Jan 2015 at 8:37
I had a similar problem when I tried to use XStream 1.3.1, which was fixed with
an upgrade to 1.4.5. The version shipped with Cakupan is 1.4.3, are you using
that version, or some other version?
Original comment by sgiff...@suspectclass.com
on 6 Jan 2015 at 6:36
Original issue reported on code.google.com by
schubert...@gmail.com
on 5 Jan 2015 at 8:33