Skip to content

Commit

Permalink
Release v0.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jose committed Nov 30, 2018
1 parent 1624d16 commit 89c2694
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Ant build file analyzer that extracts compile-targets, developer included/exclud

## Running the Program

`java -jar build-analyzer.jar [path-to-project-directory] [path-to-place-output-file] [build-file-name]`
`java -jar build-analyzer-[version].jar [path-to-project-directory] [path-to-place-output-file] [build-file-name]`

### Program Output

Expand Down
5 changes: 4 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<property name="dir.target.classes" value="${dir.target}/classes"/>
<property name="dir.target.tests" value="${dir.target}/tests"/>

<property name="version" value="0.0.1"/>
<property name="dist.jar" value="${dir.target}/build-analyzer-${version}.jar"/>

<!-- Base compile classpath -->
<path id="compile.classpath">
<!-- Add libraries if necessary -->
Expand Down Expand Up @@ -56,7 +59,7 @@
</target>

<target name="jar" depends="test" description="Build jar for this project">
<jar destfile="${dir.target}/build-analyzer.jar" basedir="${dir.target.classes}">
<jar destfile="${dist.jar}" basedir="${dir.target.classes}">
<manifest>
<attribute name="Main-Class" value="Driver"/>
</manifest>
Expand Down

0 comments on commit 89c2694

Please sign in to comment.