Hello, I tried to compile Apache ODE using maven and -C switch (strict checksums). It fails on downloading saxon from http://svn.apache.org/repos/asf/servicemix/m2-repo Is this possible to add those checksums? Please note that -C switch is recommended by maven guys for resolving 'error in opening zip file' problem. (http://jira.codehaus.org/browse/MNG-2259)
http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.X/ mvn -C install Missing: ---------- 1) net.sf.saxon:saxon:jar:9.1.0.8 Try downloading the file manually from the project website. Then, install it using the command: mvn install:install-file -DgroupId=net.sf.saxon -DartifactId=saxon -Dversion=9.1.0.8 -Dpackaging=jar -Dfile=/path/to/file Alternatively, if you host your own repository you can deploy the file there: mvn deploy:deploy-file -DgroupId=net.sf.saxon -DartifactId=saxon -Dversion=9.1.0.8 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id] Path to dependency: 1) org.apache.ode:ode-utils:jar:1.3.4-SNAPSHOT 2) net.sf.saxon:saxon:jar:9.1.0.8 Regards, -- RafaĆ Rusin http://rrusin.blogspot.com http://www.touk.pl http://top.touk.pl
