Skip to content

Commit

Permalink
Gradle 7
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Sep 13, 2021
1 parent 1d0f012 commit 5b91e8a
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 79 deletions.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

plugins {
id 'nebula.plugin-plugin' version '15.4.1'
id 'nebula.plugin-plugin' version '16.0.1'
}

repositories {
Expand Down Expand Up @@ -44,6 +44,8 @@ gradlePlugin {
}
}

description = 'Plugins to ease use of Node tools (Node, Grunt, Gulp)'

pluginBundle {
website = 'https://github.com/nebula-plugins/nebula-node-plugin'
vcsUrl = 'https://github.com/nebula-plugins/nebula-node-plugin.git'
Expand Down
21 changes: 21 additions & 0 deletions gradle.lockfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This is a Gradle generated file for dependency locking.
# Manual edits can break the build and are not advised.
# This file is expected to be part of source control.
cglib:cglib-nodep:3.2.4=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
com.github.stefanbirkner:system-rules:1.19.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-test:10.0.1=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
commons-io:commons-io:1.3.2=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
junit:junit-dep:4.11=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
junit:junit:4.13=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.apache.commons:commons-io:1.3.2=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.apiguardian:apiguardian-api:1.1.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.codehaus.groovy:groovy:3.0.6=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.hamcrest:hamcrest-core:1.3=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.hamcrest:hamcrest:2.2=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.junit.platform:junit-platform-commons:1.7.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.junit.platform:junit-platform-engine:1.7.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.objenesis:objenesis:2.4=integTestRuntimeClasspath,testRuntimeClasspath
org.opentest4j:opentest4j:1.2.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.spockframework:spock-core:2.0-M4-groovy-3.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.spockframework:spock-junit4:2.0-M4-groovy-3.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
empty=annotationProcessor,compileClasspath,integTestAnnotationProcessor,runtimeClasspath,testAnnotationProcessor
3 changes: 0 additions & 3 deletions gradle/dependency-locks/annotationProcessor.lockfile

This file was deleted.

3 changes: 0 additions & 3 deletions gradle/dependency-locks/compileClasspath.lockfile

This file was deleted.

3 changes: 0 additions & 3 deletions gradle/dependency-locks/integTestAnnotationProcessor.lockfile

This file was deleted.

12 changes: 0 additions & 12 deletions gradle/dependency-locks/integTestCompileClasspath.lockfile

This file was deleted.

13 changes: 0 additions & 13 deletions gradle/dependency-locks/integTestRuntimeClasspath.lockfile

This file was deleted.

3 changes: 0 additions & 3 deletions gradle/dependency-locks/runtimeClasspath.lockfile

This file was deleted.

3 changes: 0 additions & 3 deletions gradle/dependency-locks/testAnnotationProcessor.lockfile

This file was deleted.

12 changes: 0 additions & 12 deletions gradle/dependency-locks/testCompileClasspath.lockfile

This file was deleted.

13 changes: 0 additions & 13 deletions gradle/dependency-locks/testRuntimeClasspath.lockfile

This file was deleted.

2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,4 @@ class PlatformHelperTest
'SunOS' | 'x86' | 'sunos' | 'x86' | false
'SunOS' | 'x86_64' | 'sunos' | 'x64' | false
}

def "throw exception if unsupported os"()
{
given:
this.props.setProperty( "os.name", 'Nonsense' )

when:
this.helper.getOsName()

then:
thrown( IllegalArgumentException )
}
}

0 comments on commit 5b91e8a

Please sign in to comment.