File tree Expand file tree Collapse file tree 6 files changed +15
-6
lines changed
gradle/plugins/conventions-plugin/src/main/java/org/springframework/ws/gradle/conventions
spring-ws-security/src/main/java/org/springframework/ws/soap/security/wss4j2 Expand file tree Collapse file tree 6 files changed +15
-6
lines changed Original file line number Diff line number Diff 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 ) -> {
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ 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 " )
38- api(" org.apache.wss4j:wss4j-ws-security-dom:2.4.3 " )
37+ api(" org.apache.santuario:xmlsec:4 .0.3 " )
38+ 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" )
4141 api(" org.aspectj:aspectjweaver:1.9.22" )
Original file line number Diff line number Diff line change 142142 * @author Jamin Hitchcock
143143 * @author Rob Leland
144144 * @author Lars Uffmann
145+ * @author Andreas Winter
145146 * @since 2.3.0
146- * @see <a href="http://ws.apache.org/wss4j/">Apache WSS4J 2.0</a>
147+ * @see <a href="http://ws.apache.org/wss4j/">Apache WSS4J 2.0+ </a>
147148 */
148149public class Wss4jSecurityInterceptor extends AbstractWsSecurityInterceptor implements InitializingBean {
149150
Original file line number Diff line number Diff line change 1515 */
1616
1717/**
18- * Contains {@code CallbackHandler} implementations for WSS4J 2.0.
18+ * Contains {@code CallbackHandler} implementations for WSS4J 2.0+ .
1919 */
2020package org .springframework .ws .soap .security .wss4j2 .callback ;
Original file line number Diff line number Diff line change 1616
1717/**
1818 * Contains classes for using the <a href="http://ws.apache.org/wss4j/">Apache WSS4J
19- * 2.0</a> WS-Security implementation within Spring-WS.
19+ * 2.0+ </a> WS-Security implementation within Spring-WS.
2020 */
2121package org .springframework .ws .soap .security .wss4j2 ;
Original file line number Diff line number Diff line change 1515 */
1616
1717/**
18- * Contains support classes for working with WSS4J 2.0.
18+ * Contains support classes for working with WSS4J 2.0+ .
1919 */
2020package org .springframework .ws .soap .security .wss4j2 .support ;
You can’t perform that action at this time.
0 commit comments