Skip to content
This repository has been archived by the owner on Feb 6, 2022. It is now read-only.

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
elnebuloso committed Feb 26, 2015
1 parent b071261 commit 019e334
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 8.2.0

- project packaging

## 8.1.0

- elnebuloso/bundler integration
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.1.0
8.2.0
15 changes: 15 additions & 0 deletions commons/targets/project/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

<target name="project.package:init" hidden="true">
<property name="project.package.patternset.id" value="project_package_patternset_default" />
<property name="project.package.deploy.path" value="" />

<patternset id="project_package_patternset_default">
<include name="**/**" />
Expand Down Expand Up @@ -38,6 +39,19 @@
<patternset refid="${project.package.patternset.id}" />
</fileset>
</tar>

<if>
<not>
<equals arg1="${project.package.deploy.path}" arg2="" />
</not>
<then>
<echo message="deploy source: ${project.tmp}/${project.version}.tar" />
<echo message="deploy destination: ${project.package.deploy.path}/${project.version}.tar" />

<mkdir dir="${project.package.deploy.path}" />
<copy file="${project.tmp}/${project.version}.tar" tofile="${project.package.deploy.path}/${project.version}.tar" overwrite="true" />
</then>
</if>
</target>


Expand All @@ -55,6 +69,7 @@
<echo message="Property Value" />
<echo message="----------------------------------------------------------------------------------------------------" />
<echo message="project.package.patternset.id ${project.package.patternset.id}" />
<echo message="project.package.deploy.path ${project.package.deploy.path}" />
</target>


Expand Down

0 comments on commit 019e334

Please sign in to comment.