Skip to content

Commit

Permalink
Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.5 (#20)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <bot@renovateapp.com>
  • Loading branch information
ChristianHoesel and renovate-bot authored Oct 21, 2021
1 parent 1eb656f commit be89608
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 82 deletions.
109 changes: 55 additions & 54 deletions de.bitctrl.dav.rest.client/build.gradle
Original file line number Diff line number Diff line change
@@ -1,55 +1,56 @@
apply plugin: 'application'
apply plugin: "com.github.spotbugs"
apply plugin: 'checkstyle'
apply plugin: "de.fntsoftware.gradle.markdown-to-pdf"

assemble.dependsOn+='betriebshandbuchToPdf'

description = 'Dav3 REST Client'

ext {

datenverteiler_version = "3.14.0"
}

dependencies {
implementation project(':de.bitctrl.dav.rest.api')
implementation 'org.glassfish.jersey.core:jersey-client:2.28'
implementation 'org.glassfish.jersey.media:jersey-media-json-jackson:2.28'
implementation 'org.glassfish.jersey.inject:jersey-hk2:2.28'
implementation 'com.google.inject:guice:4.2.3'
implementation "de.bsvrz.dav:de.bsvrz.dav.daf:$datenverteiler_version"
implementation "de.bsvrz.sys:de.bsvrz.sys.funclib.application:$datenverteiler_version"
implementation "de.bsvrz.sys:de.bsvrz.sys.funclib.dataIdentificationSettings:$datenverteiler_version"
implementation 'org.reflections:reflections:0.10.1'
testImplementation 'junit:junit:4.12'
testImplementation "de.bsvrz.puk:de.bsvrz.puk.config:$datenverteiler_version"

// JAX-B dependencies for JDK 9+
implementation "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3"
implementation "org.glassfish.jaxb:jaxb-runtime:2.3.2"

runtimeOnly fileTree('lib') { include '*.jar' }
}

mainClassName='de.bitctrl.dav.rest.client.Client'

jar{
manifest{
attributes('Main-Class': mainClassName,
'Class-Path': configurations.runtimeClasspath.files.collect { it.getName() }.join(' '))
}
}


distZip {
into(project.name+"-"+project.version) {
from 'build'
include 'Betriebshandbuch.pdf'
}
}

spotbugs {
ignoreFailures = true
showStackTraces = true
apply plugin: 'application'
apply plugin: "com.github.spotbugs"
apply plugin: 'checkstyle'
apply plugin: "de.fntsoftware.gradle.markdown-to-pdf"

assemble.dependsOn+='betriebshandbuchToPdf'

description = 'Dav3 REST Client'

ext {

datenverteiler_version = "3.14.0"
}

dependencies {
implementation project(':de.bitctrl.dav.rest.api')
implementation 'org.glassfish.jersey.core:jersey-client:2.28'
implementation 'org.glassfish.jersey.media:jersey-media-json-jackson:2.28'
implementation 'org.glassfish.jersey.inject:jersey-hk2:2.28'
implementation 'com.google.inject:guice:4.2.3'
implementation "de.bsvrz.dav:de.bsvrz.dav.daf:$datenverteiler_version"
implementation "de.bsvrz.sys:de.bsvrz.sys.funclib.application:$datenverteiler_version"
implementation "de.bsvrz.sys:de.bsvrz.sys.funclib.dataIdentificationSettings:$datenverteiler_version"
implementation 'org.reflections:reflections:0.10.1'
testImplementation 'junit:junit:4.12'
testImplementation "de.bsvrz.puk:de.bsvrz.puk.config:$datenverteiler_version"

// JAX-B dependencies for JDK 9+
implementation "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3"
implementation "org.glassfish.jaxb:jaxb-runtime:2.3.5"


runtimeOnly fileTree('lib') { include '*.jar' }
}

mainClassName='de.bitctrl.dav.rest.client.Client'

jar{
manifest{
attributes('Main-Class': mainClassName,
'Class-Path': configurations.runtimeClasspath.files.collect { it.getName() }.join(' '))
}
}


distZip {
into(project.name+"-"+project.version) {
from 'build'
include 'Betriebshandbuch.pdf'
}
}

spotbugs {
ignoreFailures = true
showStackTraces = true
}
58 changes: 30 additions & 28 deletions de.bitctrl.dav.rest.server/build.gradle
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
apply plugin: 'application'
apply plugin: 'com.github.spotbugs'
apply plugin: 'checkstyle'

description = 'Dav3 REST Server'
dependencies {
implementation project(':de.bitctrl.dav.rest.api')
implementation 'org.glassfish.jersey.core:jersey-client:2.28'
implementation 'org.glassfish.jersey.media:jersey-media-json-jackson:2.28'
implementation 'org.glassfish.jersey.inject:jersey-hk2:2.28'
implementation 'org.glassfish.jersey.containers:jersey-container-jetty-http:2.28'

// JAX-B dependencies for JDK 9+
implementation "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3"
implementation "org.glassfish.jaxb:jaxb-runtime:2.3.2"

testImplementation 'jakarta.ws.rs:jakarta.ws.rs-api:2.1.6'
testImplementation 'org.glassfish.jersey.test-framework:jersey-test-framework-util:2.28'
testImplementation 'org.glassfish.jersey.test-framework:jersey-test-framework-core:2.28'
testImplementation 'org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2:2.28'
testImplementation 'org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-bundle:2.28'
testImplementation 'junit:junit:4.12'
}

spotbugs {
excludeFilter = file("$projectDir/config/spotbugsExclude.xml")
}

apply plugin: 'application'
apply plugin: 'com.github.spotbugs'
apply plugin: 'checkstyle'

description = 'Dav3 REST Server'
dependencies {
implementation project(':de.bitctrl.dav.rest.api')
implementation 'org.glassfish.jersey.core:jersey-client:2.28'
implementation 'org.glassfish.jersey.media:jersey-media-json-jackson:2.28'
implementation 'org.glassfish.jersey.inject:jersey-hk2:2.28'
implementation 'org.glassfish.jersey.containers:jersey-container-jetty-http:2.28'

// JAX-B dependencies for JDK 9+

implementation "jakarta.xml.bind:jakarta.xml.bind-api:2.3.3"
implementation "org.glassfish.jaxb:jaxb-runtime:2.3.5"


testImplementation 'jakarta.ws.rs:jakarta.ws.rs-api:2.1.6'
testImplementation 'org.glassfish.jersey.test-framework:jersey-test-framework-util:2.28'
testImplementation 'org.glassfish.jersey.test-framework:jersey-test-framework-core:2.28'
testImplementation 'org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2:2.28'
testImplementation 'org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-bundle:2.28'
testImplementation 'junit:junit:4.12'
}

spotbugs {
excludeFilter = file("$projectDir/config/spotbugsExclude.xml")
}

mainClassName='de.bitctrl.dav.rest.server.DavRestServer'

0 comments on commit be89608

Please sign in to comment.