Skip to content

Commit

Permalink
[SHRINKRES-331] Upgrading Gradle Tooling API to 8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
petrberan committed Jan 10, 2024
1 parent 56db390 commit 882ce8e
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'maven-publish'

group = 'org.jboss.shrinkwrap.resolver.test'
version = '1.0.0'
Expand All @@ -10,9 +10,9 @@ repositories {
}

dependencies {
compile 'commons-codec:commons-codec:1.7'
testCompile 'junit:junit:4.10'
compile('org.jboss.spec:jboss-javaee-web-6.0:3.0.2.Final') {
implementation 'commons-codec:commons-codec:1.7'
testImplementation 'junit:junit:4.10'
implementation('org.jboss.spec:jboss-javaee-web-6.0:3.0.2.Final') {
exclude(module: 'xalan')
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apply plugin: 'maven'
apply plugin: 'maven-publish'

group = 'org.jboss.shrinkwrap.resolver.test'
version = '1.0.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ repositories {
}

dependencies {
compile 'commons-codec:commons-codec:1.7'
testCompile 'junit:junit:4.10'
compile('org.jboss.spec:jboss-javaee-web-6.0:3.0.2.Final') {
implementation 'commons-codec:commons-codec:1.7'
testImplementation 'junit:junit:4.10'
implementation('org.jboss.spec:jboss-javaee-web-6.0:3.0.2.Final') {
exclude(module: 'xalan')
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ repositories {
}

dependencies {
compile(project(':module-one'))
implementation(project(':module-one'))
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'war'
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'maven-publish'

group = 'org.jboss.shrinkwrap.resolver.test'
version = '1.0.0'
Expand All @@ -11,8 +11,8 @@ repositories {
}

dependencies {
compile group: 'commons-codec', name: 'commons-codec', version:'1.7'
testCompile group: 'junit', name: 'junit', version:'4.10'
implementation group: 'commons-codec', name: 'commons-codec', version:'1.7'
testImplementation group: 'junit', name: 'junit', version:'4.10'
providedCompile group: 'org.slf4j', name: 'slf4j-api', version:'1.6.1'
providedCompile(group: 'org.jboss.spec', name: 'jboss-javaee-web-6.0', version:'3.0.2.Final') {
exclude(module: 'xalan')
Expand Down
2 changes: 1 addition & 1 deletion gradle/impl-gradle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<repository>
<id>jfrog</id>
<name>jfrog</name>
<url>https://repo.gradle.org/gradle/libs-releases-local/</url>
<url>https://repo.gradle.org/gradle/libs-releases/</url>
</repository>
</repositories>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ repositories {
}

dependencies {
compile 'org.arquillian.container:arquillian-container-chameleon:1.0.0.Beta3'
implementation 'org.arquillian.container:arquillian-container-chameleon:1.0.0.Beta3'
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ dependencyManagement {
}

dependencies {
compile 'org.slf4j:slf4j-simple:1.7.5'
testCompile 'junit:junit:4.12'
compile 'org.apache.deltaspike.core:deltaspike-core-api'
runtime 'org.apache.deltaspike.core:deltaspike-core-impl'
implementation 'org.slf4j:slf4j-simple:1.7.5'
testImplementation 'junit:junit:4.12'
implementation 'org.apache.deltaspike.core:deltaspike-core-api'
runtimeOnly 'org.apache.deltaspike.core:deltaspike-core-impl'
}
4 changes: 2 additions & 2 deletions gradle/impl-gradle/src/test/resources/simple/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ repositories {
}

dependencies {
compile 'org.slf4j:slf4j-simple:1.7.5'
testCompile 'junit:junit:4.12'
implementation 'org.slf4j:slf4j-simple:1.7.5'
testCompileOnly 'junit:junit:4.12'
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<version.org.apache.maven.plugins_maven-site-plugin>3.5.1</version.org.apache.maven.plugins_maven-site-plugin>
<version.org.jboss.shrinkwrap>1.2.6</version.org.jboss.shrinkwrap>
<version.org.codehaus.plexus.compiler.javac>2.7</version.org.codehaus.plexus.compiler.javac>
<version.gradle-tooling-api>4.0.1</version.gradle-tooling-api>
<version.gradle-tooling-api>8.5</version.gradle-tooling-api>
<version.maven.invoker>3.0.0</version.maven.invoker>
<version.arquillian.spacelift>1.0.2</version.arquillian.spacelift>

Expand Down

0 comments on commit 882ce8e

Please sign in to comment.