We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've failed to build the project using ant and I decided to try with Maven. So I used the following pom.xml file:
pom.xml
<?xml version="1.0" encoding="UTF-8"?> <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>swift</groupId> <artifactId>stroke</artifactId> <version>1.0-SNAPSHOT</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.fasterxml</groupId> <artifactId>aalto-xml</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>stax2-api</artifactId> <version>3.1.4</version> </dependency> <!-- https://mvnrepository.com/artifact/com.jcraft/jzlib --> <dependency> <groupId>com.jcraft</groupId> <artifactId>jzlib</artifactId> <version>1.1.3</version> </dependency> <!-- https://mvnrepository.com/artifact/com.ibm.icu/icu4j --> <dependency> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> <version>62.1</version> </dependency> <!-- https://mvnrepository.com/artifact/dnsjava/dnsjava --> <dependency> <groupId>dnsjava</groupId> <artifactId>dnsjava</artifactId> <version>2.1.7</version> </dependency> </dependencies> </project>
But the projects fails to build because of errors at com.isode.stroke.parser.AaltoXMLParser.java :
com.isode.stroke.parser.AaltoXMLParser.java
com.fasterxml.aalto.stax.InputFactoryImpl.java
createAsyncXMLStreamReader()
com.fasterxml.aalto.AsyncInputFeeder.java
feedInput()
Maybe there are problems with dependency versions. How can I fix it?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've failed to build the project using ant and I decided to try with Maven.
So I used the following
pom.xml
file:But the projects fails to build because of errors at
com.isode.stroke.parser.AaltoXMLParser.java
:com.fasterxml.aalto.stax.InputFactoryImpl.java
methodcreateAsyncXMLStreamReader()
does not existcom.fasterxml.aalto.AsyncInputFeeder.java
methodfeedInput()
dows not exist.Maybe there are problems with dependency versions. How can I fix it?
The text was updated successfully, but these errors were encountered: