Testcode that is captured in a jar

This commit is contained in:
Andy Clement
2013-04-30 13:54:23 -07:00
parent 4fc4ae6dd0
commit 875fe2fde1
4 changed files with 10 additions and 0 deletions

View File

@@ -9,5 +9,6 @@
<classpathentry kind="con" path="org.eclipse.ajdt.core.ASPECTJRT_CONTAINER"/>
<classpathentry combineaccessrules="false" kind="src" path="/org.springsource.loaded"/>
<classpathentry kind="lib" path="lib/cglib-nodep-2.2.jar" sourcepath="lib/cglib-nodep-2.2-sources.jar"/>
<classpathentry kind="lib" path="code.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Binary file not shown.

View File

@@ -0,0 +1,5 @@
package codeforjar;
public class A {
public static String getString() { return "Hello"; }
}

View File

@@ -0,0 +1,4 @@
This jar is built from the code in the codejar folder in the testdata project:
javac -d . *.java
jar -cvMf ../code.jar *