-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.5 (#20)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
- Loading branch information
1 parent
1eb656f
commit be89608
Showing
2 changed files
with
85 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |