Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ydylla committed Jul 14, 2022
1 parent 21bfcf0 commit bf7bdb3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
17 changes: 11 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ repositories {
mavenCentral()
}

sourceCompatibility = "11"
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

task sourceJar(type: Jar) {
dependsOn classes
Expand All @@ -31,13 +34,14 @@ publishing {
}

dependencies {
implementation "org.slf4j:slf4j-api:1.7.32"
implementation "org.apache.tapestry:tapestry-core:5.7.3"
api "org.webjars:webjars-locator-core:0.47"
implementation "org.slf4j:slf4j-api:1.7.36"
implementation "org.apache.tapestry:tapestry-core:5.8.2"
api "org.webjars:webjars-locator-core:0.52"

testImplementation "org.apache.tapestry:tapestry-spock:5.7.3"
testImplementation "org.spockframework:spock-core:2.1-groovy-3.0"
testImplementation "org.apache.tapestry:tapestry-spock:5.8.2"

testRuntimeOnly "org.slf4j:slf4j-simple:1.7.32"
testRuntimeOnly "org.slf4j:slf4j-simple:1.7.36"
testImplementation "javax.servlet:javax.servlet-api:4.0.1"

// used as example import libs (versions are hardcoded in tests)
Expand All @@ -52,6 +56,7 @@ jar {
}

test {
useJUnitPlatform()
finalizedBy jacocoTestReport
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ class WebjarAssetTest extends Specification {
then:
MultipleMatchesException e = thrown()
e.matches == [
'META-INF/resources/webjars/codemirror/5.13.2/README.md',
'META-INF/resources/webjars/babel-core/6.14.0/README.md'
'META-INF/resources/webjars/babel-core/6.14.0/README.md',
'META-INF/resources/webjars/codemirror/5.13.2/README.md'
]
}

Expand Down

0 comments on commit bf7bdb3

Please sign in to comment.