Antwrap 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +69 -0
- data/LICENSE +201 -0
- data/Manifest.txt +16 -0
- data/README.txt +344 -0
- data/Rakefile +85 -0
- data/lib/ant_project.rb +124 -116
- data/lib/ant_task.rb +111 -103
- data/lib/antwrap.rb +28 -19
- data/lib/antwrap_utilities.rb +34 -26
- data/lib/jruby_modules.rb +28 -20
- data/lib/rjb_modules.rb +28 -20
- metadata +60 -64
- data/COPYING +0 -504
- data/README +0 -15
- data/test/antwrap_test.rb +0 -256
- data/test/build.xml +0 -15
- data/test/output/META-INF/MANIFEST.MF +0 -3
- data/test/output/parent/FooBarParent.class +0 -0
- data/test/test-resources/build.xml +0 -340
- data/test/test-resources/foo.txt +0 -0
- data/test/test-resources/foo.zip +0 -0
- data/test/test-resources/parent-src/parent/FooBarParent.java +0 -19
- data/test/test-resources/parent.jar +0 -0
- data/test/test-resources/src/foo/bar/FooBar.java +0 -26
- data/test/test-resources/src/foo/bar/baz/FooBarBaz.java +0 -7
data/test/test-resources/foo.txt
DELETED
File without changes
|
data/test/test-resources/foo.zip
DELETED
Binary file
|
@@ -1,19 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* antwrap
|
3
|
-
*
|
4
|
-
* Copyright Caleb Powell 2007
|
5
|
-
*
|
6
|
-
* Licensed under the LGPL, see the file COPYING in the distribution
|
7
|
-
*/
|
8
|
-
|
9
|
-
package parent;
|
10
|
-
|
11
|
-
/**
|
12
|
-
* Created by IntelliJ IDEA.
|
13
|
-
* User: caleb
|
14
|
-
* Date: Dec 30, 2006
|
15
|
-
* Time: 3:08:17 PM
|
16
|
-
* To change this template use File | Settings | File Templates.
|
17
|
-
*/
|
18
|
-
public class FooBarParent {
|
19
|
-
}
|
Binary file
|
@@ -1,26 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* antwrap
|
3
|
-
*
|
4
|
-
* Copyright Caleb Powell 2007
|
5
|
-
*
|
6
|
-
* Licensed under the LGPL, see the file COPYING in the distribution
|
7
|
-
*/
|
8
|
-
package foo.bar;
|
9
|
-
|
10
|
-
import parent.FooBarParent;
|
11
|
-
|
12
|
-
public class FooBar extends FooBarParent {
|
13
|
-
|
14
|
-
public FooBar(){
|
15
|
-
}
|
16
|
-
|
17
|
-
public static void main(String[] args){
|
18
|
-
System.out.println("foo.FooBar.main");
|
19
|
-
System.out.println("The FooBar class has been run with the following arguments:");
|
20
|
-
for (int i = 0; i < args.length; i++) {
|
21
|
-
System.out.println("arg = " + args[i]);
|
22
|
-
}
|
23
|
-
System.out.println("Antwrap JVM Arg: " + System.getProperty("antwrap"));
|
24
|
-
System.exit(0);
|
25
|
-
}
|
26
|
-
}
|