Skip to content

Commit

Permalink
Merge pull request MicroShed#415 from KyleAure/jakarta-core-transitiv…
Browse files Browse the repository at this point in the history
…e-dependency

Fix transitive dependencies within the Microshed project
  • Loading branch information
appiepollo14 authored Dec 28, 2023
2 parents 5d720dc + 289a44a commit 380f08f
Show file tree
Hide file tree
Showing 19 changed files with 1 addition and 39 deletions.
2 changes: 0 additions & 2 deletions modules/liberty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ description = "Extensions for using MicroShed Testing with Liberty servers"

dependencies {
api project(':microshed-testing-testcontainers')

compileOnly project(':microshed-testing-core')
}

apply from: publishScript
Expand Down
2 changes: 0 additions & 2 deletions modules/payara-micro/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ description = "Extensions for using MicroShed Testing with Payara Micro servers"

dependencies {
api project(':microshed-testing-testcontainers')

compileOnly project(':microshed-testing-core')
}

apply from: publishScript
Expand Down
2 changes: 0 additions & 2 deletions modules/payara-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ description = "Extensions for using MicroShed Testing with Payara servers"

dependencies {
api project(':microshed-testing-testcontainers')

compileOnly project(':microshed-testing-core')
}

apply from: publishScript
Expand Down
2 changes: 0 additions & 2 deletions modules/quarkus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ description = "Extensions for using MicroShed Testing with Quarkus"
dependencies {
api 'io.quarkus:quarkus-junit5:3.6.4'
api project(':microshed-testing-testcontainers')

compileOnly project(':microshed-testing-core')
}

apply from: publishScript
Expand Down
5 changes: 1 addition & 4 deletions modules/testcontainers/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,9 @@ sourceSets {
dependencies {
api 'org.junit.jupiter:junit-jupiter-api:5.10.1'
api 'org.testcontainers:junit-jupiter:1.19.3'

compileOnly project(':microshed-testing-core')
api project(':microshed-testing-core')

//Unit + Integration testing
testImplementation project(':microshed-testing-core')

testImplementation 'org.eclipse.microprofile.rest.client:microprofile-rest-client-api:3.0.1'

testImplementation 'org.slf4j:slf4j-log4j12:2.0.9'
Expand Down
2 changes: 0 additions & 2 deletions modules/wildfly/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ description = "Extensions for using MicroShed Testing with WildFly servers"

dependencies {
api project(':microshed-testing-testcontainers')

compileOnly project(':microshed-testing-core')
}

apply from: publishScript
Expand Down
1 change: 0 additions & 1 deletion sample-apps/everything-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ dependencies {
implementation 'org.mongodb:mongo-java-driver:3.12.14'

testImplementation project(':microshed-testing-testcontainers')
testImplementation project(':microshed-testing-core')

testImplementation 'org.slf4j:slf4j-log4j12:2.0.9'
testImplementation 'org.testcontainers:mockserver:1.19.3'
Expand Down
1 change: 0 additions & 1 deletion sample-apps/jaxrs-basicauth/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ dependencies {
api 'org.eclipse.microprofile:microprofile:6.1'

testImplementation project(':microshed-testing-testcontainers')
testImplementation project(':microshed-testing-core')

testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.slf4j:slf4j-log4j12:2.0.9'
Expand Down
1 change: 0 additions & 1 deletion sample-apps/jaxrs-json/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ dependencies {
api 'org.eclipse.microprofile:microprofile:6.1'

testImplementation project(':microshed-testing-testcontainers')
testImplementation project(':microshed-testing-core')

testImplementation 'org.slf4j:slf4j-log4j12:2.0.9'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
Expand Down
1 change: 0 additions & 1 deletion sample-apps/jaxrs-mpjwt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ dependencies {
api 'org.eclipse.microprofile:microprofile:6.1'

testImplementation project(':microshed-testing-testcontainers')
testImplementation project(':microshed-testing-core')

testImplementation 'org.slf4j:slf4j-log4j12:2.0.9'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
Expand Down
1 change: 0 additions & 1 deletion sample-apps/jdbc-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'

testImplementation project(':microshed-testing-testcontainers')
testImplementation project(':microshed-testing-core')

postgres 'org.postgresql:postgresql:42.7.1'
}
Expand Down
1 change: 0 additions & 1 deletion sample-apps/kafka-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ dependencies {
implementation 'org.apache.kafka:kafka-clients:3.6.1'

testImplementation project(':microshed-testing-testcontainers')
testImplementation project(':microshed-testing-core')

testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.testcontainers:kafka:1.19.3'
Expand Down
1 change: 0 additions & 1 deletion sample-apps/liberty-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ dependencies {
api 'org.eclipse.microprofile:microprofile:6.1'

testImplementation project(':microshed-testing-liberty')
testImplementation project(':microshed-testing-core')

testImplementation 'org.slf4j:slf4j-log4j12:2.0.9'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
Expand Down
1 change: 0 additions & 1 deletion sample-apps/maven-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ task deleteTarget(type: Delete) {
}

compileJava.dependsOn ':microshed-testing-testcontainers:publishToMavenLocal'
compileJava.dependsOn ':microshed-testing-core:publishToMavenLocal'
assemble.dependsOn runMvnCompile
test.dependsOn runMvnVerify
clean.dependsOn deleteTarget
Expand Down
8 changes: 0 additions & 8 deletions sample-apps/maven-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,12 @@
<version>10.0.0</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-testcontainers</artifactId>
<version>0.9.3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-core</artifactId>
<version>0.9.3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
Expand Down Expand Up @@ -86,4 +79,3 @@
</plugins>
</build>
</project>

1 change: 0 additions & 1 deletion sample-apps/payara-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ dependencies {
api 'org.eclipse.microprofile:microprofile:6.1'

testImplementation project(':microshed-testing-payara-server')
testImplementation project(':microshed-testing-core')

testImplementation 'org.slf4j:slf4j-log4j12:2.0.9'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
Expand Down
1 change: 0 additions & 1 deletion sample-apps/quarkus-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ task deleteTarget(type: Delete) {
}

compileJava.dependsOn ':microshed-testing-quarkus:publishToMavenLocal'
compileJava.dependsOn ':microshed-testing-core:publishToMavenLocal'
assemble.dependsOn runMvnCompile
test.dependsOn runMvnVerify
clean.dependsOn deleteTarget
Expand Down
6 changes: 0 additions & 6 deletions sample-apps/quarkus-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,6 @@
<version>0.9.3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.microshed</groupId>
<artifactId>microshed-testing-core</artifactId>
<version>0.9.3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
Expand Down
1 change: 0 additions & 1 deletion sample-apps/wildfly-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ dependencies {
api 'org.eclipse.microprofile:microprofile:6.1'

testImplementation project(':microshed-testing-wildfly')
testImplementation project(':microshed-testing-core')

testImplementation 'org.slf4j:slf4j-log4j12:2.0.9'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'
Expand Down

0 comments on commit 380f08f

Please sign in to comment.