JBossWS SVN: r15433 - common-tools/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-19 06:58:08 -0500 (Mon, 19 Dec 2011)
New Revision: 15433
Added:
common-tools/tags/jbossws-common-tools-1.0.0.GA/
Log:
Tagging jbossws-common-tools-1.0.0.GA
13 years
JBossWS SVN: r15431 - common/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-19 06:50:32 -0500 (Mon, 19 Dec 2011)
New Revision: 15431
Added:
common/tags/jbossws-common-2.0.0.GA/
Log:
Tagging jbossws-common-2.0.0.GA
13 years
JBossWS SVN: r15430 - common/branches.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-19 06:49:15 -0500 (Mon, 19 Dec 2011)
New Revision: 15430
Removed:
common/branches/JBWS-3393/
Log:
Removing branch not needed anymore
13 years
JBossWS SVN: r15428 - stack/cxf/trunk/modules/dist/src/main/doc.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-19 06:32:27 -0500 (Mon, 19 Dec 2011)
New Revision: 15428
Added:
stack/cxf/trunk/modules/dist/src/main/doc/README_COMMITTERS.TXT
Log:
Added: stack/cxf/trunk/modules/dist/src/main/doc/README_COMMITTERS.TXT
===================================================================
--- stack/cxf/trunk/modules/dist/src/main/doc/README_COMMITTERS.TXT (rev 0)
+++ stack/cxf/trunk/modules/dist/src/main/doc/README_COMMITTERS.TXT 2011-12-19 11:32:27 UTC (rev 15428)
@@ -0,0 +1,5 @@
+The docbook xml files are automatically exported from https://docs.jboss.org/author/display/JBWS .
+You select "Tools" -> "JBoss DocBook Export", then enable "Single book output" and export.
+The generated files should differ from the SCM version of doc only by the changes applied online plus few minor tunings that needs to be re-applied manually to fix page titles starting with "*-" (eg. JAX-WS, WS-Addressing, WS-*, ...).
+Finally a new entry in the revision docbook file should be added at each release.
+Thanks
13 years
JBossWS SVN: r15427 - stack/cxf/trunk/modules/dist/src/main/doc.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-19 06:20:38 -0500 (Mon, 19 Dec 2011)
New Revision: 15427
Modified:
stack/cxf/trunk/modules/dist/src/main/doc/chapter-4-JAX_WS_Tools.xml
stack/cxf/trunk/modules/dist/src/main/doc/chapter-5-Advanced_User_Guide.xml
Log:
Updating doc
Modified: stack/cxf/trunk/modules/dist/src/main/doc/chapter-4-JAX_WS_Tools.xml
===================================================================
--- stack/cxf/trunk/modules/dist/src/main/doc/chapter-4-JAX_WS_Tools.xml 2011-12-19 10:47:31 UTC (rev 15426)
+++ stack/cxf/trunk/modules/dist/src/main/doc/chapter-4-JAX_WS_Tools.xml 2011-12-19 11:20:38 UTC (rev 15427)
@@ -722,7 +722,7 @@
<plugin>
<groupId>org.jboss.ws.plugins</groupId>
<artifactId>maven-jaxws-tools-plugin</artifactId>
- <version>1.0.0.GA</version>
+ <version>1.1.0.GA</version>
<configuration>
<wsdls>
<wsdl>${basedir}/test.wsdl</wsdl>
@@ -746,7 +746,7 @@
<plugin>
<groupId>org.jboss.ws.plugins</groupId>
<artifactId>maven-jaxws-tools-plugin</artifactId>
- <version>1.0.0.GA</version>
+ <version>1.1.0.GA</version>
<configuration>
<wsdls>
<wsdl>${basedir}/test.wsdl</wsdl>
@@ -778,7 +778,7 @@
<plugin>
<groupId>org.jboss.ws.plugins</groupId>
<artifactId>maven-jaxws-tools-plugin</artifactId>
- <version>1.0.0.GA</version>
+ <version>1.1.0.GA</version>
<configuration>
<wsdls>
<wsdl>${basedir}/test.wsdl</wsdl>
@@ -795,6 +795,33 @@
</plugins>
</build></programlisting>
</informalexample>
+ <para>
+ Plugin stack dependencyThe plugin itself does not have an explicit dependency to a JBossWS stack, as it's meant for being used with implementations of any supported version of the
+ <emphasis role="italics">JBossWS SPI</emphasis>
+ . So the user is expected to set a dependency in his own
+ <code>pom.xml</code>
+ to the desired
+ <emphasis role="italics">JBossWS</emphasis>
+ stack version. The plugin will rely on the that for using the proper tooling.
+ </para>
+ <informalexample>
+ <programlisting><dependencies>
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-client</artifactId>
+ <version>4.0.0.GA</version>
+ </dependency>
+</dependencies></programlisting>
+ </informalexample>
+ <tip>
+ <para>
+ Be careful when using this plugin with the Maven War Plugin as that include any project dependency into the generated application war archive. You might want to set
+ <code><scope>provided</scope></code>
+ for the
+ <emphasis role="italics">JBossWS</emphasis>
+ stack dependency to avoid that.
+ </para>
+ </tip>
</section>
</section>
<section id="sid-3866762_wsconsume-AntTask">
@@ -1242,7 +1269,7 @@
<plugin>
<groupId>org.jboss.ws.plugins</groupId>
<artifactId>maven-jaxws-tools-plugin</artifactId>
- <version>@pom.version(a)</version>
+ <version>1.1.0.GA</version>
<configuration>
<verbose>true</verbose>
<endpointClass>org.jboss.test.ws.plugins.tools.wsprovide.TestEndpoint</endpointClass>
@@ -1266,7 +1293,7 @@
<plugin>
<groupId>org.jboss.ws.plugins</groupId>
<artifactId>maven-jaxws-tools-plugin</artifactId>
- <version>@pom.version(a)</version>
+ <version>1.1.0.GA</version>
<configuration>
<verbose>true</verbose>
<endpointClass>org.jboss.test.ws.plugins.tools.wsprovide.TestEndpoint2</endpointClass>
@@ -1283,6 +1310,33 @@
</plugins>
</build></programlisting>
</informalexample>
+ <para>
+ Plugin stack dependencyThe plugin itself does not have an explicit dependency to a JBossWS stack, as it's meant for being used with implementations of any supported version of the
+ <emphasis role="italics">JBossWS SPI</emphasis>
+ . So the user is expected to set a dependency in his own
+ <code>pom.xml</code>
+ to the desired
+ <emphasis role="italics">JBossWS</emphasis>
+ stack version. The plugin will rely on the that for using the proper tooling.
+ </para>
+ <informalexample>
+ <programlisting><dependencies>
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-client</artifactId>
+ <version>4.0.0.GA</version>
+ </dependency>
+</dependencies></programlisting>
+ </informalexample>
+ <tip>
+ <para>
+ Be careful when using this plugin with the Maven War Plugin as that include any project dependency into the generated application war archive. You might want to set
+ <code><scope>provided</scope></code>
+ for the
+ <emphasis role="italics">JBossWS</emphasis>
+ stack dependency to avoid that.
+ </para>
+ </tip>
</section>
</section>
<section id="sid-3866758_wsprovide-AntTask">
Modified: stack/cxf/trunk/modules/dist/src/main/doc/chapter-5-Advanced_User_Guide.xml
===================================================================
--- stack/cxf/trunk/modules/dist/src/main/doc/chapter-5-Advanced_User_Guide.xml 2011-12-19 10:47:31 UTC (rev 15426)
+++ stack/cxf/trunk/modules/dist/src/main/doc/chapter-5-Advanced_User_Guide.xml 2011-12-19 11:20:38 UTC (rev 15427)
@@ -384,7 +384,7 @@
</section>
<section id="sid-3866793">
- <title>Addressing</title>
+ <title>WS-Addressing</title>
<para>
JBoss Web Services inherits full WS-Addressing capabilities from the underlying Apache CXF implementation. Apache CXF provides support for 2004-08 and
<ulink url="http://www.w3.org/TR/ws-addr-core/">1.0</ulink>
@@ -465,7 +465,7 @@
</section>
<section id="sid-3866793_WS-Addressing-WSAddressingPolicy">
- <title>Addressing Policy</title>
+ <title>WS-Addressing Policy</title>
<para>The WS-Addressing support is also perfectly integrated with the Apache CXF WS-Policy engine.</para>
<para>
This basically means that the WSDL contract generation for code-first endpoint deployment is policy-aware: users can annotate endpoints with the
@@ -575,10 +575,10 @@
</section>
<section id="sid-3866795">
- <title>Security</title>
+ <title>WS-Security</title>
<section id="sid-3866795_WS-Security-">
- <title>Security overview</title>
+ <title>WS-Security overview</title>
<para>
WS-Security provides the means to secure your services beyond transport level protocols such as
<emphasis role="italics">HTTPS</emphasis>
@@ -664,7 +664,7 @@
<para>Recent versions of Apache CXF, however, introduced support for WS-Security Policy, which aims at moving most of the security configuration into the service contract (through policies), so that clients can easily be configured almost completely automatically from that. This way users do not need to manually deal with configuring / installing the required interceptors; the Apache CXF WS-Policy engine internally takes care of that instead.</para>
<section id="sid-3866795_WS-Security-WSSecurityPolicysupport">
- <title>Security Policy support</title>
+ <title>WS-Security Policy support</title>
<para>
WS-SecurityPolicy describes the actions that are required to securely communicate with a service advertised in a given WSDL contract. The WSDL bindings / operations reference WS-Policy fragments with the security requirements to interact with the service. The
<ulink url="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/v1.3/ws-securitypolicy...">WS-SecurityPolicy specification</ulink>
@@ -1668,7 +1668,7 @@
</section>
<section id="sid-3866797">
- <title>Reliable Messaging</title>
+ <title>WS-Reliable Messaging</title>
<para>
JBoss Web Services inherits full WS-Reliable Messaging capabilities from the underlying Apache CXF implementation. At the time of writing, Apache CXF provides support for the
<ulink url="http://schemas.xmlsoap.org/ws/2005/02/rm/">WS-Reliable Messaging 1.0</ulink>
13 years
JBossWS SVN: r15425 - in projects/plugins/maven/jaxws-tools/trunk: src/main/java/org/jboss/ws/plugins/tools and 4 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-19 03:02:00 -0500 (Mon, 19 Dec 2011)
New Revision: 15425
Modified:
projects/plugins/maven/jaxws-tools/trunk/pom.xml
projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/AbstractWsConsumeMojo.java
projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/AbstractWsProvideMojo.java
projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractConsumerParams.java
projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractDelegate.java
projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractProviderParams.java
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom-cxf.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testProvidedScope/pom-cxf.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testProvidedScope/pom.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom-cxf.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom-cxf.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom.xml
Log:
[JBWS-3400] Cleaning up a bunch of stuff by moving to latest snapshots to jbws 4
Modified: projects/plugins/maven/jaxws-tools/trunk/pom.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/pom.xml 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/pom.xml 2011-12-19 08:02:00 UTC (rev 15425)
@@ -44,16 +44,6 @@
<version>${jbossws.common.tools.version}</version>
</dependency>
<dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>${log4j.version}</version>
- </dependency>
- <dependency>
- <groupId>gnu-getopt</groupId>
- <artifactId>getopt</artifactId>
- <version>${getopt.version}</version>
- </dependency>
- <dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>${maven.project.version}</version>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/AbstractWsConsumeMojo.java
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/AbstractWsConsumeMojo.java 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/AbstractWsConsumeMojo.java 2011-12-19 08:02:00 UTC (rev 15425)
@@ -140,10 +140,6 @@
params.setWsdlLocation(wsdlLocation);
params.setArgLine(argLine);
params.setFork(fork);
- if (fork)
- {
- params.setAdditionalPluginDependencies(getRequiredPluginDependencyPaths());
- }
WSContractDelegate delegate = new WSContractDelegate(getLog());
for (String wsdl : wsdls)
Modified: projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/AbstractWsProvideMojo.java
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/AbstractWsProvideMojo.java 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/AbstractWsProvideMojo.java 2011-12-19 08:02:00 UTC (rev 15425)
@@ -101,10 +101,6 @@
params.setSourceDirectory(sourceDirectory);
params.setFork(fork);
params.setArgLine(argLine);
- if (fork)
- {
- params.setAdditionalPluginDependencies(getRequiredPluginDependencyPaths());
- }
WSContractDelegate delegate = new WSContractDelegate(getLog());
delegate.runProvider(params);
Modified: projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractConsumerParams.java
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractConsumerParams.java 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractConsumerParams.java 2011-12-19 08:02:00 UTC (rev 15425)
@@ -42,16 +42,7 @@
private String targetPackage;
private String wsdlLocation;
private String argLine;
- private List<String> additionalPluginDependencies;
- public List<String> getAdditionalPluginDependencies()
- {
- return additionalPluginDependencies;
- }
- public void setAdditionalPluginDependencies(List<String> additionalPluginDependencies)
- {
- this.additionalPluginDependencies = additionalPluginDependencies;
- }
public boolean isAdditionalHeaders()
{
return additionalHeaders;
Modified: projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractDelegate.java
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractDelegate.java 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractDelegate.java 2011-12-19 08:02:00 UTC (rev 15425)
@@ -74,7 +74,6 @@
{
classpath.add(url.getFile());
}
- classpath.addAll(params.getAdditionalPluginDependencies());
List<String> commandList = initCommandList(params.getArgLine(), classpath, "org.jboss.ws.tools.cmd.WSProvide");
String commandLine = getProviderCommandLine(commandList, params);
@@ -123,7 +122,6 @@
{
classpath.add(url.getFile());
}
- classpath.addAll(params.getAdditionalPluginDependencies());
List<String> commandList = initCommandList(params.getArgLine(), classpath, "org.jboss.ws.tools.cmd.WSConsume");
String commandLine = getConsumerCommandLine(commandList, params, wsdl);
Modified: projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractProviderParams.java
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractProviderParams.java 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/main/java/org/jboss/ws/plugins/tools/WSContractProviderParams.java 2011-12-19 08:02:00 UTC (rev 15425)
@@ -37,16 +37,7 @@
private File resourceDirectory;
private File sourceDirectory;
private String argLine;
- private List<String> additionalPluginDependencies;
- public List<String> getAdditionalPluginDependencies()
- {
- return additionalPluginDependencies;
- }
- public void setAdditionalPluginDependencies(List<String> additionalPluginDependencies)
- {
- this.additionalPluginDependencies = additionalPluginDependencies;
- }
public boolean isFork()
{
return fork;
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom-cxf.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom-cxf.xml 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom-cxf.xml 2011-12-19 08:02:00 UTC (rev 15425)
@@ -120,18 +120,12 @@
<dependency>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-client</artifactId>
- <version>4.0.0.CR1</version>
- <exclusions> <!-- TODO remove this exclusion when moving to 4.0.0.CR2 (as that prevents junit from leaking into the dependency tree -->
- <exclusion>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </exclusion>
- </exclusions>
+ <version>4.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-factories</artifactId>
- <version>4.0.0.CR1</version>
+ <version>4.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.xml.ws</groupId>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom.xml 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom.xml 2011-12-19 08:02:00 UTC (rev 15425)
@@ -115,7 +115,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-client</artifactId>
- <version>4.0.0.CR2</version>
+ <version>4.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.xml.ws</groupId>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testProvidedScope/pom-cxf.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testProvidedScope/pom-cxf.xml 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testProvidedScope/pom-cxf.xml 2011-12-19 08:02:00 UTC (rev 15425)
@@ -88,22 +88,10 @@
<dependency>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-client</artifactId>
- <version>4.0.0.CR1</version>
+ <version>4.0.0-SNAPSHOT</version>
<scope>provided</scope>
- <exclusions> <!-- TODO remove this exclusion when moving to 4.0.0.CR2 (as that prevents junit from leaking into the dependency tree -->
- <exclusion>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </exclusion>
- </exclusions>
</dependency>
<dependency>
- <groupId>org.jboss.ws.cxf</groupId>
- <artifactId>jbossws-cxf-factories</artifactId>
- <version>4.0.0.CR1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
<groupId>org.jboss.spec.javax.xml.ws</groupId>
<artifactId>jboss-jaxws-api_2.2_spec</artifactId>
<version>2.0.0.Final</version>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testProvidedScope/pom.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testProvidedScope/pom.xml 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testProvidedScope/pom.xml 2011-12-19 08:02:00 UTC (rev 15425)
@@ -89,7 +89,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-client</artifactId>
- <version>4.0.0.CR2</version>
+ <version>4.0.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom-cxf.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom-cxf.xml 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom-cxf.xml 2011-12-19 08:02:00 UTC (rev 15425)
@@ -95,7 +95,7 @@
<dependency>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-client</artifactId>
- <version>4.0.0.CR1</version>
+ <version>4.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom.xml 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom.xml 2011-12-19 08:02:00 UTC (rev 15425)
@@ -96,7 +96,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-client</artifactId>
- <version>4.0.0.CR2</version>
+ <version>4.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jboss</groupId>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom-cxf.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom-cxf.xml 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom-cxf.xml 2011-12-19 08:02:00 UTC (rev 15425)
@@ -71,13 +71,7 @@
<dependency>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-client</artifactId>
- <version>4.0.0.CR1</version>
- <exclusions> <!-- TODO remove this exclusion when moving to 4.0.0.CR2 (as that prevents junit from leaking into the dependency tree -->
- <exclusion>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </exclusion>
- </exclusions>
+ <version>4.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom.xml 2011-12-19 06:25:15 UTC (rev 15424)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom.xml 2011-12-19 08:02:00 UTC (rev 15425)
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-client</artifactId>
- <version>4.0.0.CR2</version>
+ <version>4.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
13 years
JBossWS SVN: r15424 - in stack/native/trunk: modules/client and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-19 01:25:15 -0500 (Mon, 19 Dec 2011)
New Revision: 15424
Modified:
stack/native/trunk/modules/client/pom.xml
stack/native/trunk/pom.xml
Log:
Making jbossws-api dependency explicit and adding jbossws-common-tools dependency into jbossws-native-client to have proper dependency tree generated for tools usage (maven plugins)
Modified: stack/native/trunk/modules/client/pom.xml
===================================================================
--- stack/native/trunk/modules/client/pom.xml 2011-12-18 20:42:49 UTC (rev 15423)
+++ stack/native/trunk/modules/client/pom.xml 2011-12-19 06:25:15 UTC (rev 15424)
@@ -16,6 +16,18 @@
<!-- Dependencies -->
<dependencies>
<dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-spi</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-common-tools</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-core</artifactId>
<version>${project.version}</version>
Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml 2011-12-18 20:42:49 UTC (rev 15423)
+++ stack/native/trunk/pom.xml 2011-12-19 06:25:15 UTC (rev 15424)
@@ -58,6 +58,7 @@
<!-- Properties -->
<properties>
+ <jbossws.api.version>1.0.0-SNAPSHOT</jbossws.api.version>
<jbossws.spi.version>2.0.0-SNAPSHOT</jbossws.spi.version>
<jbossws.common.version>2.0.0-SNAPSHOT</jbossws.common.version>
<jbossws.common.tools.version>1.0.0-SNAPSHOT</jbossws.common.tools.version>
@@ -105,6 +106,11 @@
<!-- jbossws dependencies -->
<dependency>
<groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-api</artifactId>
+ <version>${jbossws.api.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
<artifactId>jbossws-common</artifactId>
<version>${jbossws.common.version}</version>
</dependency>
13 years
JBossWS SVN: r15423 - in stack/cxf/trunk: modules/client and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-18 15:42:49 -0500 (Sun, 18 Dec 2011)
New Revision: 15423
Modified:
stack/cxf/trunk/modules/client/pom.xml
stack/cxf/trunk/pom.xml
Log:
Making jbossws-api dependency explicit and adding jbossws-common-tools dependency into jbossws-cxf-client to have proper dependency tree generated for tools usage (maven plugins)
Modified: stack/cxf/trunk/modules/client/pom.xml
===================================================================
--- stack/cxf/trunk/modules/client/pom.xml 2011-12-18 20:27:39 UTC (rev 15422)
+++ stack/cxf/trunk/modules/client/pom.xml 2011-12-18 20:42:49 UTC (rev 15423)
@@ -18,10 +18,18 @@
<!-- jbossws dependencies -->
<dependency>
<groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
<artifactId>jbossws-common</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-common-tools</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
<artifactId>jbossws-spi</artifactId>
</dependency>
<dependency>
Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml 2011-12-18 20:27:39 UTC (rev 15422)
+++ stack/cxf/trunk/pom.xml 2011-12-18 20:42:49 UTC (rev 15423)
@@ -59,6 +59,7 @@
<!-- Properties -->
<properties>
+ <jbossws.api.version>1.0.0-SNAPSHOT</jbossws.api.version>
<jbossws.spi.version>2.0.0-SNAPSHOT</jbossws.spi.version>
<jbossws.common.version>2.0.0-SNAPSHOT</jbossws.common.version>
<jbossws.common.tools.version>1.0.0-SNAPSHOT</jbossws.common.tools.version>
@@ -125,6 +126,11 @@
</dependency>
<dependency>
<groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-api</artifactId>
+ <version>${jbossws.api.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
<artifactId>jbossws-spi</artifactId>
<version>${jbossws.spi.version}</version>
</dependency>
13 years
JBossWS SVN: r15422 - common-tools/trunk.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2011-12-18 15:27:39 -0500 (Sun, 18 Dec 2011)
New Revision: 15422
Modified:
common-tools/trunk/pom.xml
Log:
Fixing some dependency scopes: no need to remove (set to provide) jbossws-spi / getopt / log4j dependencies as those are actually to be seen in dependency trees (eg. in maven jaxws tools plugin). Also moving junit dependency to test scope, as it's needed for tests only.
Modified: common-tools/trunk/pom.xml
===================================================================
--- common-tools/trunk/pom.xml 2011-12-18 18:25:51 UTC (rev 15421)
+++ common-tools/trunk/pom.xml 2011-12-18 20:27:39 UTC (rev 15422)
@@ -42,25 +42,22 @@
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-spi</artifactId>
<version>${jbossws.spi.version}</version>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>gnu-getopt</groupId>
<artifactId>getopt</artifactId>
<version>${getopt.version}</version>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
- <scope>provided</scope>
+ <scope>test</scope>
</dependency>
</dependencies>
13 years