Browse Source

Move lib/ext/jrockit to just lib/jrockit

It was the only subdirectory under lib/ext anyway and somehow always
irritating and difficult to find when just using a directory browser in
the IDE.

Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tags/V1_9_7_M2
Alexander Kriegisch 3 years ago
parent
commit
2b0b1a9895

lib/ext/jrockit/LICENSE.TXT → lib/jrockit/LICENSE.TXT View File


lib/ext/jrockit/jrockit-src.zip → lib/jrockit/jrockit-src.zip View File


lib/ext/jrockit/jrockit.jar → lib/jrockit/jrockit.jar View File


lib/ext/jrockit/managementapi-jrockit81.jar → lib/jrockit/managementapi-jrockit81.jar View File


+ 1
- 1
loadtime/pom.xml View File

@@ -71,7 +71,7 @@
<artifactId>jrockit</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/ext/jrockit/jrockit.jar</systemPath>
<systemPath>${project.basedir}/../lib/jrockit/jrockit.jar</systemPath>
</dependency>

<dependency>

+ 1
- 1
loadtime/src/test/java/org/aspectj/weaver/loadtime/JRockitAgentTest.java View File

@@ -54,7 +54,7 @@ public class JRockitAgentTest extends TestCase {
}

public void testJrockitRecursionProtection() {
URL jrockit = FileUtil.getFileURL(new File("../lib/ext/jrockit/jrockit.jar"));
URL jrockit = FileUtil.getFileURL(new File("../lib/jrockit/jrockit.jar"));
URL[] urls = new URL[] {jrockit};
URLClassLoader thisLoader = new URLClassLoader(urls, getClass().getClassLoader());
try {

+ 1
- 1
run-all-junit-tests/pom.xml View File

@@ -244,7 +244,7 @@
<artifactId>jrockit</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/ext/jrockit/jrockit.jar</systemPath>
<systemPath>${project.basedir}/../lib/jrockit/jrockit.jar</systemPath>
</dependency>
<dependency>
<!-- Identical to lib/ant/lib/ant-launcher.jar, a former system-scoped dependency -->

Loading…
Cancel
Save