Skip to content
This repository was archived by the owner on Mar 1, 2018. It is now read-only.

Commit 8f429e6

Browse files
committed
Use latest Closure Compiler and Nailgun
1 parent c7d5eee commit 8f429e6

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Makefile

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,20 @@ bin/libNailgunTest.jnilib:
66
closure-compiler:
77
rm -fr temp
88
mkdir temp
9-
cd temp && curl -O http://closure-compiler.googlecode.com/files/compiler-latest.zip && unzip compiler-latest.zip
9+
cd temp && curl -O https://dl.google.com/closure-compiler/compiler-latest.zip && unzip compiler-latest.zip
1010
mkdir closure-compiler
1111
mv temp/compiler.jar closure-compiler
1212
rm -fr temp
1313

1414
nailgun:
1515
rm -fr temp
16-
svn co http://nailgun.svn.sourceforge.net/svnroot/nailgun/trunk@21 temp && cd temp/nailgun && ant
16+
mkdir temp
17+
cd temp && curl -OL https://github.com/martylamb/nailgun/archive/nailgun-all-0.9.1.zip && unzip nailgun-all-0.9.1.zip
18+
cd temp/nailgun-nailgun-all-0.9.1 && make ng && cd nailgun-server && mvn package
1719
mkdir nailgun
18-
mv temp/nailgun/dist/nailgun-0.7.1.jar nailgun/nailgun.jar
19-
mv temp/nailgun/ng nailgun/ng
20+
mv temp/nailgun-nailgun-all-0.9.1/nailgun-server/target/nailgun-server-0.9.1.jar nailgun/nailgun.jar
21+
mv temp/nailgun-nailgun-all-0.9.1/ng nailgun/ng
2022
rm -fr temp
23+
24+
clean:
25+
rm -rf bin/libNailgunTest.jnilib bin/libNailgunTest.class closure-compiler nailgun temp

0 commit comments

Comments
 (0)