-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created a simple build script to generate a zip of all the source files
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<project default="dist" basedir="."> | ||
|
||
<property name="project.name" value="mock-ii"/> | ||
<property name="project.version" value="0.0"/> | ||
<property name="project.src" location="src"/> | ||
<property name="project.dist" location="dist"/> | ||
|
||
<target name="dist"> | ||
<property name="archive" value="${project.dist}/${project.name}-${project.version}.zip"/> | ||
<delete file="${archive}"/> | ||
<zip destfile="${archive}" basedir="${project.src}"/> | ||
</target> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.zip |