Skip to content

Commit 08995d9

Browse files
committed
Polish "Upgrade to WSS4J 4.0.0"
See gh-1429
1 parent 409671b commit 08995d9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

gradle/plugins/conventions-plugin/src/main/java/org/springframework/ws/gradle/conventions/JavaBasePluginConventions.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ void apply(Project project) {
4343

4444
private void configureRepositories(Project project) {
4545
project.getRepositories().mavenCentral();
46+
project.getRepositories().maven((repository) -> {
47+
repository.setName("Shibboleth Releases");
48+
repository.setUrl("https://build.shibboleth.net/nexus/content/repositories/releases");
49+
repository.content((content) -> {
50+
content.includeGroup("org.opensaml");
51+
content.includeGroup("net.shibboleth");
52+
});
53+
});
4654
String version = project.getVersion().toString();
4755
if (version.contains("-")) {
4856
project.getRepositories().maven((repository) -> {

spring-ws-platform/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies {
3434
api("org.apache.commons:commons-collections4:4.4")
3535
api("org.apache.httpcomponents.client5:httpclient5:5.2.3")
3636
api("org.apache.httpcomponents:httpclient:4.5.14")
37-
api("org.apache.santuario:xmlsec:3.0.4")
37+
api("org.apache.santuario:xmlsec:4.0.3")
3838
api("org.apache.wss4j:wss4j-ws-security-dom:4.0.0")
3939
api("org.apache.ws.xmlschema:xmlschema-core:2.3.1")
4040
api("org.aspectj:aspectjrt:1.9.22")

0 commit comments

Comments
 (0)