Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Werner <[email protected]>
  • Loading branch information
fhg-dw committed Jun 19, 2024
1 parent c5cd61b commit 38c81ad
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 56 deletions.
8 changes: 4 additions & 4 deletions conformance-tests/allowed-licenses.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@
},
{
"moduleLicense": "Apache License, Version 2.0",
"moduleVersion": "2.11.0",
"moduleVersion": "2.16.1",
"moduleName": "commons-io:commons-io"
},
{
"comment": "MIT can be included into Apache 2.0 according https://www.apache.org/legal/resolved.html#category-a (31.1.23)",
"moduleLicense": "MIT License",
"moduleVersion": "2.0.4",
"moduleVersion": "2.0.13",
"moduleName": "org.slf4j:slf4j-api"
},
{
"comment": "uses dual license, we use Eclipse Public License - v 1.0 which can be included into Apache 2.0 according to https://www.apache.org/legal/resolved.html#category-b (31.1.23)",
"moduleVersion": "1.4.5",
"moduleVersion": "1.5.6",
"moduleName": "ch.qos.logback:logback-core"
},
{
"comment": "uses dual license, we use Eclipse Public License - v 1.0 which can be included into Apache 2.0 according to https://www.apache.org/legal/resolved.html#category-b (31.1.23)",
"moduleVersion": "1.4.5",
"moduleVersion": "1.5.6",
"moduleName": "ch.qos.logback:logback-classic"
}
]
Expand Down
103 changes: 52 additions & 51 deletions conformance-tests/build.gradle
Original file line number Diff line number Diff line change
@@ -1,51 +1,52 @@
//#############################################################################
//Global configuration
//#############################################################################


plugins {
id 'java-library'
id 'com.github.jk1.dependency-license-report' version '2.0'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'ch.qos.logback:logback-classic:1.4.5'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.4'

implementation group: 'com.beanit', name: 'iec61850bean', version: '1.9.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.11.0'

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.3.1'

}

jar {
manifest {
attributes(
'Main-Class': 'org.openmuc.fnn.steuerbox.ScheduleWriterExample'
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}

test {
useJUnitPlatform()
}


import com.github.jk1.license.render.XmlReportRenderer

licenseReport {
outputDir = "$projectDir/build/licenses"
configurations = ['runtimeClasspath']
excludeOwnGroup = true
excludeBoms = false
renderers = [new XmlReportRenderer('third-party-libs.xml', 'Back-End Libraries')]
allowedLicensesFile = new File("$projectDir/allowed-licenses.json")
}
//#############################################################################
//Global configuration
//#############################################################################


plugins {
id 'java-library'
id 'com.github.jk1.dependency-license-report' version '2.8'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'ch.qos.logback:logback-classic:1.5.6'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.13'

implementation group: 'com.beanit', name: 'iec61850bean', version: '1.9.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.16.1'

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.2'

}

jar {
manifest {
attributes(
'Main-Class': 'org.openmuc.fnn.steuerbox.ScheduleWriterExample'
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}

test {
useJUnitPlatform()
}


import com.github.jk1.license.render.XmlReportRenderer

licenseReport {
outputDir = "$projectDir/build/licenses"
configurations = ['runtimeClasspath']
excludeOwnGroup = true
excludeBoms = false
renderers = [new XmlReportRenderer('third-party-libs.xml', 'Back-End Libraries')]
allowedLicensesFile = new File("$projectDir/allowed-licenses.json")
}

2 changes: 1 addition & 1 deletion conformance-tests/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-7.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 38c81ad

Please sign in to comment.