Skip to content

Commit

Permalink
v.0.05 - changing build system to Maven
Browse files Browse the repository at this point in the history
Build system has been changed from ant to Maven. The major reason is
that it allows for removing binary jar files of dependent libraries
from source directory. Instead, required libraries are fetched
automatically by Maven during build.

- Removed ant build configuration
- Added Maven build configuration
- Removed binary jars of dependent libraries
- Removed unecessary NetBeans configuration
- Changed source directory structure to Maven-like
- Bumped version to 0.0.5.
  • Loading branch information
ppalucha committed May 7, 2018
1 parent 1cf8236 commit 7b7f45a
Show file tree
Hide file tree
Showing 95 changed files with 103 additions and 1,563 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ hs_err_pid*
/nbproject/private/

build/
dist/
dist/
/target/
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ This is fork of ksar project hosted originally at sourceforce.net. Since origina
seams to be abandoned, this fork is created to maintain and develop the application.

If you want just to run the application, download JAR file from releases page and run
with `java -jar <JAR FILE NAME>`.

Lastest jar is also avaialble in *distrib* directory.
with `java -jar <JAR FILE NAME>`. To compile, you need to have Maven installed, in source directory run `mvn install`. IDE project configuration is included for NetBeans. You need to use JDK >=6 and <= 8.

# News
v0.0.5
- Build system changed to Maven, dependent libraries are no longer included in source.

v0.0.4
- File open fixes.

Expand Down
128 changes: 0 additions & 128 deletions build.xml

This file was deleted.

Binary file removed distrib/kSar2-0.0.4.zip
Binary file not shown.
Binary file not shown.
Binary file removed lib/absolutelayout/AbsoluteLayout.jar
Binary file not shown.
202 changes: 0 additions & 202 deletions lib/commons-cli/LICENSE.txt

This file was deleted.

5 changes: 0 additions & 5 deletions lib/commons-cli/NOTICE.txt

This file was deleted.

Binary file removed lib/commons-cli/commons-cli-1.4.jar
Binary file not shown.
Binary file removed lib/iText-5.0.3.jar
Binary file not shown.
Binary file removed lib/jcommon-1.0.16.jar
Binary file not shown.
Binary file removed lib/jfreechart-1.0.13.jar
Binary file not shown.
Binary file removed lib/jsch-0.1.42.jar
Binary file not shown.
Binary file removed lib/junit/junit-3.8.2-api.zip
Binary file not shown.
Binary file removed lib/junit/junit-3.8.2.jar
Binary file not shown.
Binary file removed lib/junit_4/junit-4.5-api.zip
Binary file not shown.
Binary file removed lib/junit_4/junit-4.5-src.jar
Binary file not shown.
Binary file removed lib/junit_4/junit-4.5.jar
Binary file not shown.
35 changes: 0 additions & 35 deletions lib/nblibraries.properties

This file was deleted.

Binary file removed lib/net-commons/commons-net-2.0-javadoc.jar
Binary file not shown.
Binary file removed lib/net-commons/commons-net-2.0-sources.jar
Binary file not shown.
Binary file removed lib/net-commons/commons-net-2.0.jar
Binary file not shown.
Binary file removed lib/swing-layout/swing-layout-1.0.4-doc.zip
Binary file not shown.
Binary file removed lib/swing-layout/swing-layout-1.0.4-src.zip
Binary file not shown.
Binary file removed lib/swing-layout/swing-layout-1.0.4.jar
Binary file not shown.
Loading

0 comments on commit 7b7f45a

Please sign in to comment.