Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 6 additions & 21 deletions codemodel-foundation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@
<artifactId>base-transport</artifactId>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-telemetry</artifactId>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand All @@ -59,26 +54,16 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-telemetry</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-transport-json</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<ignoredNonTestScopedDependencies>
<!-- requires build.base.telemetry in module-info.java for test visibility;
no separate test module-info is feasible with Maven's single-module constraint -->
<ignoredNonTestScopedDependency>build.base:base-telemetry</ignoredNonTestScopedDependency>
</ignoredNonTestScopedDependencies>
</configuration>
</plugin>
</plugins>
</build>
</project>
31 changes: 6 additions & 25 deletions expression-codemodel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@
<artifactId>base-mereology</artifactId>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-parsing</artifactId>
</dependency>

<!-- Test Dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand All @@ -60,30 +55,16 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-parsing</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-transport-json</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyze-dependencies</id>
<configuration>
<ignoredNonTestScopedDependencies>
<!-- Required in module-info.java for JPMS test access, but only used in tests -->
<ignoredNonTestScopedDependency>build.base:base-parsing</ignoredNonTestScopedDependency>
</ignoredNonTestScopedDependencies>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
15 changes: 0 additions & 15 deletions jdk-annotation-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,6 @@
<artifactId>base-mereology</artifactId>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-query</artifactId>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-marshalling</artifactId>
</dependency>

<dependency>
<groupId>build.base</groupId>
<artifactId>base-telemetry</artifactId>
Expand Down Expand Up @@ -111,11 +101,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<ignoredUnusedDeclaredDependencies>
<!-- required in module-info.java but no direct class imports -->
<ignoredUnusedDeclaredDependency>build.base:base-marshalling</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>build.base:base-query</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
<ignoredUsedUndeclaredDependencies>
<!-- transitive via objectoriented-codemodel; referenced in method signatures picked up by bytecode analysis -->
<ignoredUsedUndeclaredDependency>build.codemodel:expression-codemodel</ignoredUsedUndeclaredDependency>
Expand Down
23 changes: 0 additions & 23 deletions objectoriented-codemodel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@
<artifactId>codemodel-foundation</artifactId>
</dependency>

<dependency>
<groupId>build.codemodel</groupId>
<artifactId>imperative-codemodel</artifactId>
</dependency>

<dependency>
<groupId>build.codemodel</groupId>
<artifactId>hierarchical-codemodel</artifactId>
Expand Down Expand Up @@ -75,22 +70,4 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
<ignoredUnusedDeclaredDependencies>
<!-- required in module-info.java but no direct class imports -->
<ignoredUnusedDeclaredDependency>build.codemodel:imperative-codemodel</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
<ignoredNonTestScopedDependencies>
<ignoredUnusedDeclaredDependency>build.base:base-foundation</ignoredUnusedDeclaredDependency>
</ignoredNonTestScopedDependencies>
</configuration>
</plugin>
</plugins>
</build>
</project>