Skip to content

Commit

Permalink
empty
Browse files Browse the repository at this point in the history
  • Loading branch information
rjolly committed Mar 10, 2019
1 parent 64673e5 commit 4cdf139
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
3 changes: 3 additions & 0 deletions build-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ load("build.js")
cd("../pkg")
load("build.js")

cd("../wm")
load("build.js")

cd("..")
load("build.js")

Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

<target name="src">
<tar destfile="../${ant.project.name}-src.tar.gz" compression="gzip">
<tarfileset prefix="linoleum" dir="." includes="application/**,bin/**,html/**,local/**,mail/**,calendar/**,notepad/**,pkg/**,src/**,*.js,build.properties,*.xml,manifest.mf,*.txt,Makefile" excludes="**/build/**,**/dist/**,**/private/**"/>
<tarfileset prefix="linoleum" dir="." includes="application/**,bin/**,html/**,local/**,mail/**,calendar/**,notepad/**,pkg/**,wm/**,src/**,*.js,build.properties,*.xml,manifest.mf,*.txt,Makefile" excludes="**/build/**,**/dist/**,**/private/**"/>
</tar>
</target>

Expand Down
3 changes: 3 additions & 0 deletions clean.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@ clean("build/classes")
cd("../pkg")
clean("build/classes")

cd("../wm")
clean("build/classes")

cd("..")
clean("build/classes")
1 change: 1 addition & 0 deletions ivy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@
<dependency org="net.java.linoleum" name="html" rev="1.6" conf="runtime->default"/>
<dependency org="net.java.linoleum" name="mail" rev="1.6" conf="runtime->default"/>
<dependency org="net.java.linoleum" name="pkg" rev="1.6" conf="runtime->default"/>
<dependency org="net.java.linoleum" name="wm" rev="1.6" conf="runtime->default"/>
</dependencies>
</ivy-module>
5 changes: 5 additions & 0 deletions wm/install.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
var organization = "net.java.linoleum";
var module = "wm";
var version = "1.6";

install(organization + "#" + module + ";" + version, "default", new File(getHome(), "lib"));

0 comments on commit 4cdf139

Please sign in to comment.