PriorityPruner Code
Brought to you by:
chrisedlund,
malinanker
| File | Date | Author | Commit |
|---|---|---|---|
| .settings | 2016-05-14 |
|
[ee5da2] Added configuration for Maven |
| src | 2016-09-07 |
|
[4594d6] Updated version text to v0.1.4 |
| .classpath | 2016-05-16 |
|
[481847] Configured for Maven and m2Eclipse |
| .gitattributes | 2016-09-07 |
|
[549e34] Changed LF line endings from .txt files to .res... |
| .gitignore | 2016-05-14 |
|
[912b09] Added directory structure for unit tests, inclu... |
| .project | 2016-05-14 |
|
[ee5da2] Added configuration for Maven |
| .pversion | 2014-03-10 |
|
[9c4ec4] Up-to-date version of PriorityPruner |
| LICENSE.txt | 2016-05-16 |
|
[a15502] Added License |
| README.md | 2016-05-17 |
|
[f2cbbb] Updated text |
| dependency-reduced-pom.xml | 2016-09-07 |
|
[4594d6] Updated version text to v0.1.4 |
| pom.xml | 2016-09-07 |
|
[4594d6] Updated version text to v0.1.4 |
java -jar PriorityPruner.jar [OPTIONS]
Documentation is available at prioritypruner.sourceforge.net/documentation.html
1) Install Git
2) Clone PriorityPruner code repository:
git clone git://git.code.sf.net/p/prioritypruner/code prioritypruner-code
3) Install JDK version 8 or higher, and make sure $JAVA_HOME points to this installation
4) Install Maven version 3 or higher, and add the Maven bin folder to $PATH
5) Install jar dependencies from source code folder into your local Maven repository:
cd prioritypruner-code
mvn install:install-file -Dfile=src/main/resources/lib/commons-cli-1.2.jar \
-DgroupId=commons-cli -DartifactId=commons-cli -Dversion=1.2 -Dpackaging=jar
mvn install:install-file -Dfile=src/main/resources/lib/log4j-1.2.17.jar \
-DgroupId=log4j -DartifactId=log4j -Dversion=1.2.17 -Dpackaging=jar
6) You should now be ready to run various phases of the Maven lifecycle:
mvn validate
mvn compile
mvn clean
mvn test
mvn package
mvn package -Dmaven.test.skip=true