You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by co...@apache.org on 2018/08/27 15:12:51 UTC

svn commit: r1839339 - in /webservices/wss4j/branches/2_2_x-fixes: bindings/pom.xml parent/pom.xml policy/pom.xml ws-security-common/pom.xml ws-security-dom/pom.xml ws-security-policy-stax/pom.xml ws-security-stax/pom.xml ws-security-web/pom.xml

Author: coheigea
Date: Mon Aug 27 15:12:51 2018
New Revision: 1839339

URL: http://svn.apache.org/viewvc?rev=1839339&view=rev
Log:
Adding Automatic-Module-Name entries

Modified:
    webservices/wss4j/branches/2_2_x-fixes/bindings/pom.xml
    webservices/wss4j/branches/2_2_x-fixes/parent/pom.xml
    webservices/wss4j/branches/2_2_x-fixes/policy/pom.xml
    webservices/wss4j/branches/2_2_x-fixes/ws-security-common/pom.xml
    webservices/wss4j/branches/2_2_x-fixes/ws-security-dom/pom.xml
    webservices/wss4j/branches/2_2_x-fixes/ws-security-policy-stax/pom.xml
    webservices/wss4j/branches/2_2_x-fixes/ws-security-stax/pom.xml
    webservices/wss4j/branches/2_2_x-fixes/ws-security-web/pom.xml

Modified: webservices/wss4j/branches/2_2_x-fixes/bindings/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/2_2_x-fixes/bindings/pom.xml?rev=1839339&r1=1839338&r2=1839339&view=diff
==============================================================================
--- webservices/wss4j/branches/2_2_x-fixes/bindings/pom.xml (original)
+++ webservices/wss4j/branches/2_2_x-fixes/bindings/pom.xml Mon Aug 27 15:12:51 2018
@@ -31,6 +31,7 @@
 
     <properties>
         <cobertura.skip>true</cobertura.skip>
+        <wss4j.module.name>org.apache.wss4j.bindings</wss4j.module.name>
     </properties>
 
     <dependencies>

Modified: webservices/wss4j/branches/2_2_x-fixes/parent/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/2_2_x-fixes/parent/pom.xml?rev=1839339&r1=1839338&r2=1839339&view=diff
==============================================================================
--- webservices/wss4j/branches/2_2_x-fixes/parent/pom.xml (original)
+++ webservices/wss4j/branches/2_2_x-fixes/parent/pom.xml Mon Aug 27 15:12:51 2018
@@ -311,6 +311,7 @@
                                 <DynamicImport-Package>
                                     ${wss4j.osgi.dynamic.import}
                                 </DynamicImport-Package>
+                                <Automatic-Module-Name>${wss4j.module.name}</Automatic-Module-Name>
                             </instructions>
                         </configuration>
                     </execution>

Modified: webservices/wss4j/branches/2_2_x-fixes/policy/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/2_2_x-fixes/policy/pom.xml?rev=1839339&r1=1839338&r2=1839339&view=diff
==============================================================================
--- webservices/wss4j/branches/2_2_x-fixes/policy/pom.xml (original)
+++ webservices/wss4j/branches/2_2_x-fixes/policy/pom.xml Mon Aug 27 15:12:51 2018
@@ -29,6 +29,10 @@
     <artifactId>wss4j-policy</artifactId>
     <name>Apache WSS4J WS-SecurityPolicy model</name>
 
+    <properties>
+        <wss4j.module.name>org.apache.wss4j.policy</wss4j.module.name>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.neethi</groupId>

Modified: webservices/wss4j/branches/2_2_x-fixes/ws-security-common/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/2_2_x-fixes/ws-security-common/pom.xml?rev=1839339&r1=1839338&r2=1839339&view=diff
==============================================================================
--- webservices/wss4j/branches/2_2_x-fixes/ws-security-common/pom.xml (original)
+++ webservices/wss4j/branches/2_2_x-fixes/ws-security-common/pom.xml Mon Aug 27 15:12:51 2018
@@ -40,6 +40,7 @@
                               org.apache.wss4j.saml
                         </DynamicImport-Package>
        -->
+       <wss4j.module.name>org.apache.wss4j.common</wss4j.module.name>
     </properties>
     
     <build>

Modified: webservices/wss4j/branches/2_2_x-fixes/ws-security-dom/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/2_2_x-fixes/ws-security-dom/pom.xml?rev=1839339&r1=1839338&r2=1839339&view=diff
==============================================================================
--- webservices/wss4j/branches/2_2_x-fixes/ws-security-dom/pom.xml (original)
+++ webservices/wss4j/branches/2_2_x-fixes/ws-security-dom/pom.xml Mon Aug 27 15:12:51 2018
@@ -32,6 +32,7 @@
         <wss4j.osgi.dynamic.import>
             org.bouncycastle.jce.provider
         </wss4j.osgi.dynamic.import>
+        <wss4j.module.name>org.apache.wss4j.dom</wss4j.module.name>
     </properties>
         
     <build>

Modified: webservices/wss4j/branches/2_2_x-fixes/ws-security-policy-stax/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/2_2_x-fixes/ws-security-policy-stax/pom.xml?rev=1839339&r1=1839338&r2=1839339&view=diff
==============================================================================
--- webservices/wss4j/branches/2_2_x-fixes/ws-security-policy-stax/pom.xml (original)
+++ webservices/wss4j/branches/2_2_x-fixes/ws-security-policy-stax/pom.xml Mon Aug 27 15:12:51 2018
@@ -29,6 +29,10 @@
     <artifactId>wss4j-ws-security-policy-stax</artifactId>
     <name>Apache WSS4J Streaming WS-SecurityPolicy</name>
 
+    <properties>
+        <wss4j.module.name>org.apache.wss4j.policy.stax</wss4j.module.name>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.wss4j</groupId>

Modified: webservices/wss4j/branches/2_2_x-fixes/ws-security-stax/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/2_2_x-fixes/ws-security-stax/pom.xml?rev=1839339&r1=1839338&r2=1839339&view=diff
==============================================================================
--- webservices/wss4j/branches/2_2_x-fixes/ws-security-stax/pom.xml (original)
+++ webservices/wss4j/branches/2_2_x-fixes/ws-security-stax/pom.xml Mon Aug 27 15:12:51 2018
@@ -29,6 +29,10 @@
     <artifactId>wss4j-ws-security-stax</artifactId>
     <name>Apache WSS4J Streaming WS-Security</name>
 
+    <properties>
+        <wss4j.module.name>org.apache.wss4j.stax</wss4j.module.name>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.wss4j</groupId>

Modified: webservices/wss4j/branches/2_2_x-fixes/ws-security-web/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/branches/2_2_x-fixes/ws-security-web/pom.xml?rev=1839339&r1=1839338&r2=1839339&view=diff
==============================================================================
--- webservices/wss4j/branches/2_2_x-fixes/ws-security-web/pom.xml (original)
+++ webservices/wss4j/branches/2_2_x-fixes/ws-security-web/pom.xml Mon Aug 27 15:12:51 2018
@@ -29,6 +29,10 @@
     <artifactId>wss4j-ws-security-web</artifactId>
     <name>Apache WSS4J Web WS-Security</name>
 
+    <properties>
+        <wss4j.module.name>org.apache.wss4j.web</wss4j.module.name>
+    </properties>
+
     <build>
         <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
         <resources>