-
Notifications
You must be signed in to change notification settings - Fork 141
Does not build #62
Comments
Could you provide more detail? We have automated CI running on https://github.com/imazen/sharpen |
OK fixed the build by configuring the mvn compiler plugin and now I have a successful build. Alas trying to run it fails as it can't find its properties file. No mention of the properties file in the README? |
OK now hacked the class path with an empty properties file and successfully ran the command line with just the -help switch. Just got a load of null output :-( I would say that this is currently a totally broken release. Is this still maintained? May be I am in the wrong repo here? |
That's quite strange; it worked out of the box on several platforms and CIs. We're actively using it and improving different features. My suspicion is that you are, somehow, looking at the wrong branch or codebase. |
No idea if/how that happened, I just did the usual git clone |
What version of maven and the jvm are you using? |
java version "1.7.0_67" Apache Maven 3.0.5 |
The pom.xml is wrong, it does not specify source for the compiler and it does not package sharpen.properties in to the jar file. The compiler plugin must be specified: http://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html Currently not sure how to get the properties file included, I am more of an ant guy. |
Same here: pom.xml is wrong because it does not specify maven-compiler-plugin, so when typing "mvn clean test", it results in "Annotations are not supported in -source 1.3", i.e., java 1.3! The source for pom.xml should be this. (I am neither a maven nor ant person, but it works with a successful build and test. I added lines to use Java 1.7--as per instructions.)
|
There is another error in the pom.xml causing the sharpen.properties error:
should be
|
Lots of errors about annotations and missing ;
The text was updated successfully, but these errors were encountered: