aboutsummaryrefslogtreecommitdiffstats
path: root/loadtime
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-04-12 13:16:29 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2021-04-12 13:16:29 +0700
commitf00f547d7b37647880e7f8fc030f9f96dbad9848 (patch)
treeec5812ad1a35103fadd6668527df0926494c8d51 /loadtime
parent9c62d17de4f69c5cd4c4c35a3ab2d1263109e163 (diff)
downloadaspectj-f00f547d7b37647880e7f8fc030f9f96dbad9848.tar.gz
aspectj-f00f547d7b37647880e7f8fc030f9f96dbad9848.zip
Clean up Maven dependencies using 'dependency:analyze' goal
Notably, this change involves a partial revert of @4a5660b3, because we are not using JUnit Jupiter yet but still JUnit 4 tests. See discussion under commit at https://github.com/eclipse/org.aspectj/commit/4a5660b3. Many other warnings - concerning both used undeclared and unused declared dependencies - were eliminated by adding or removing the corresponding dependencies from the POMs. Furthermore, I tried to make sure that some clearly test-scoped dependencies are now actually declared as such, so as to avoid unwanted transitivity bleeding into compile scope and maybe unwanted classes ending up in uber JARs via Maven Shade or Maven Assembly. TODO: I am not so sure why modules other than 'run-all-unit-tests' would depend on test JARs. I hope I broke nothing essential there. As of today, the other modules where I found '<type>test-jar</type>' dependencies are: - ajde - testing - testing-drivers - tests - weaver Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'loadtime')
-rw-r--r--loadtime/pom.xml52
1 files changed, 5 insertions, 47 deletions
diff --git a/loadtime/pom.xml b/loadtime/pom.xml
index 7c03455e5..f7aae7160 100644
--- a/loadtime/pom.xml
+++ b/loadtime/pom.xml
@@ -16,11 +16,6 @@
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
- <artifactId>asm</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.aspectj</groupId>
<artifactId>bridge</artifactId>
<version>${project.version}</version>
</dependency>
@@ -46,56 +41,19 @@
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
+ <artifactId>asm-renamed</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.aspectj</groupId>
<artifactId>testing-util</artifactId>
<version>${project.version}</version>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>bcel-builder</artifactId>
<version>${project.version}</version>
</dependency>
- <dependency>
- <!-- Identical to lib/ant/lib/xml-apis.jar, a former system-scoped dependency -->
- <groupId>xerces</groupId>
- <artifactId>xmlParserAPIs</artifactId>
- <version>${lib.ant.xerces.version}</version>
- </dependency>
- <dependency>
- <!-- Identical to lib/ant/lib/xercesImpl.jar, a former system-scoped dependency -->
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>${lib.ant.xerces.version}</version>
- </dependency>
- <dependency>
- <!-- Identical to lib/ant/lib/ant.jar, a former system-scoped dependency -->
- <groupId>ant</groupId>
- <artifactId>ant</artifactId>
- <version>${lib.ant.version}</version>
- </dependency>
</dependencies>
-<!--
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>3.0.1</version>
- <configuration>
- </configuration>
- <executions>
- <execution>
- <id>javadoc</id>
- <phase>package</phase>
- <goals>
- <goal>javadoc</goal>
- </goals>
- <configuration>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
--->
</project>