Browse Source

rebuilt internal dependencies

tags/V1_9_0_RC3
Andy Clement 6 years ago
parent
commit
5e86980fa0

bcel-builder/testsrc/Play.java → bcel-builder/testsrc/org/aspectj/apache/bcel/util/Play.java View File


BIN
lib/asm/asm-6.0_BETA.renamed.jar View File


+ 1
- 1
lib/asm/build.xml View File

@@ -5,7 +5,7 @@

<target name="package" description="Jarjar asm-5.0.4.jar and prefix package name with aj">
<jarjar destfile="asm-6.0_BETA.renamed.jar">
<zipfileset src="asm-6.0_BETA.jar"/>
<zipfileset src="asm-6.0_BETA.jar" excludes="module-info.class"/>
<rule pattern="org.objectweb.asm.**" result="aj.org.objectweb.asm.@1"/>
</jarjar>
</target>

BIN
lib/bcel/bcel-verifier.jar View File


BIN
lib/bcel/bcel.jar View File


BIN
lib/build/build.jar View File


BIN
lib/test/aspectjrt.jar View File


+ 3
- 0
tests/bugs190/modules/aaa/com/foo1/C1.java View File

@@ -0,0 +1,3 @@
package com.foo1;

public class C1 {}

+ 3
- 0
tests/bugs190/modules/aaa/module-info.java View File

@@ -0,0 +1,3 @@
module e.f.g {
exports com.foo1;
}

+ 7
- 0
tests/bugs190/modules/bbb/aaa/bbb/A.java View File

@@ -0,0 +1,7 @@
package aaa.bbb;

public class A {
public static void main(String []argv) {
System.out.println("A running");
}
}

+ 3
- 0
tests/bugs190/modules/bbb/module-info.java View File

@@ -0,0 +1,3 @@
module my.module {
exports aaa.bbb;
}

+ 6
- 0
tests/bugs190/modules/ccc/InvokeA.java View File

@@ -0,0 +1,6 @@
import aaa.bbb.A;
public class InvokeA {
public static void main(String[] argv) {
A.main(argv);
}
}

+ 7
- 0
tests/bugs190/modules/ccc/aaa/bbb/A.java View File

@@ -0,0 +1,7 @@
package aaa.bbb;

public class A {
public static void main(String []argv) {
System.out.println("A running");
}
}

+ 3
- 0
tests/bugs190/modules/ccc/module-info.java View File

@@ -0,0 +1,3 @@
module my.module {
exports aaa.bbb;
}

+ 6
- 0
tests/bugs190/modules/ddd/InvokeA.java View File

@@ -0,0 +1,6 @@
import aaa.bbb.A;
public class InvokeA {
public static void main(String[] argv) {
A.main(argv);
}
}

+ 7
- 0
tests/bugs190/modules/ddd/aaa/bbb/A.java View File

@@ -0,0 +1,7 @@
package aaa.bbb;

public class A {
public static void main(String []argv) {
System.out.println("A running");
}
}

+ 2
- 0
tests/bugs190/modules/ddd/module-info.java View File

@@ -0,0 +1,2 @@
module my.module {
}

+ 7
- 0
tests/bugs190/modules/eee/Azpect.java View File

@@ -0,0 +1,7 @@
package aspects;

public aspect Azpect {
before(): execution(* main(..)) {
System.out.println("Azpect running");
}
}

+ 7
- 0
tests/bugs190/modules/eee/aaa/bbb/A.java View File

@@ -0,0 +1,7 @@
package aaa.bbb;

public class A {
public static void main(String []argv) {
System.out.println("A running");
}
}

+ 3
- 0
tests/bugs190/modules/eee/module-info.java View File

@@ -0,0 +1,3 @@
module my.module {
exports aaa.bbb;
}

BIN
tests/bugs190/modules/fff/aspects.jar View File


BIN
tests/bugs190/modules/fff/demo.jar View File


+ 7
- 0
tests/bugs190/modules/fff/extra/AnotherAzpect.java View File

@@ -0,0 +1,7 @@
package extra;

public aspect AnotherAzpect {
before(): execution(* *(..)) && !within(*Azpect) {
System.out.println("AnotherAzpect running");
}
}

+ 4
- 0
tests/bugs190/modules/fff/module-info.java View File

@@ -0,0 +1,4 @@
module demo {
exports pkg;
requires org.aspectj.runtime;
}

BIN
tests/bugs190/modules/fff/newdemo.jar View File


+ 7
- 0
tests/bugs190/modules/fff/otherpkg/Azpect.java View File

@@ -0,0 +1,7 @@
package otherpkg;

public aspect Azpect {
before(): execution(* *(..)) && !within(Azpect) {
System.out.println("Azpect running");
}
}

+ 6
- 0
tests/bugs190/modules/fff/pkg/Demo.java View File

@@ -0,0 +1,6 @@
package pkg;
public class Demo {
public static void main(String[] argv) {
System.out.println("Demo running");
}
}

BIN
tests/bugs190/modules/module1/a/b/c/Code.class View File


BIN
tests/bugs190/modules/module1/module-info.class View File


Loading…
Cancel
Save