You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by ve...@apache.org on 2009/04/09 21:07:29 UTC

svn commit: r763769 - /synapse/trunk/java/pom.xml

Author: veithen
Date: Thu Apr  9 19:07:29 2009
New Revision: 763769

URL: http://svn.apache.org/viewvc?rev=763769&view=rev
Log:
Fixing the versions of axis2-transport-http and axis2-transport-local, which are part of Axis2 now.

Modified:
    synapse/trunk/java/pom.xml

Modified: synapse/trunk/java/pom.xml
URL: http://svn.apache.org/viewvc/synapse/trunk/java/pom.xml?rev=763769&r1=763768&r2=763769&view=diff
==============================================================================
--- synapse/trunk/java/pom.xml (original)
+++ synapse/trunk/java/pom.xml Thu Apr  9 19:07:29 2009
@@ -269,27 +269,27 @@
             </dependency>
             <dependency>
                 <groupId>org.apache.axis2</groupId>
-                <artifactId>axis2-transport-base</artifactId>
-                <version>${axis2.transport.version}</version>
+                <artifactId>axis2-transport-http</artifactId>
+                <version>${axis2.version}</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.axis2</groupId>
-                <artifactId>axis2-transport-http</artifactId>
-                <version>${axis2.transport.version}</version>
+                <artifactId>axis2-transport-local</artifactId>
+                <version>${axis2.version}</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.axis2</groupId>
-                <artifactId>axis2-transport-jms</artifactId>
+                <artifactId>axis2-transport-base</artifactId>
                 <version>${axis2.transport.version}</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.axis2</groupId>
-                <artifactId>axis2-transport-mail</artifactId>
+                <artifactId>axis2-transport-jms</artifactId>
                 <version>${axis2.transport.version}</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.axis2</groupId>
-                <artifactId>axis2-transport-local</artifactId>
+                <artifactId>axis2-transport-mail</artifactId>
                 <version>${axis2.transport.version}</version>
             </dependency>
             <dependency>



Re: svn commit: r763769 - /synapse/trunk/java/pom.xml

Posted by Andreas Veithen <an...@gmail.com>.
We can easily change that when the need arises. The purpose of this
change is simply to avoid using a stale version of the artifacts
(1.0-SNAPSHOT), because not using the artifacts coming from the Axis2
snapshot builds in our Synapse builds could have some unpleasant
consequences.

Andreas

On Thu, Apr 9, 2009 at 21:13, Glen Daniels <gl...@thoughtcraft.com> wrote:
> Hi Andreas:
>
> Couple of quick comments -
>
> Just because the transports are part of Axis2 doesn't necessarily mean that
> they will always and only be released along with Axis2 distributions.  I'd
> like it to be possible to do a maintenance rev on the transports without a
> full A2 release.  For now this seems fine, just a heads-up for later, when we
> might want individual versions.
>
> Re: the other transports, you might want to split them out into
> axis2.mailTransport.version, axis2.jmsTransport.version, etc. due to the
> possibility of the transports evolving independently.
>
> --Glen
>
> veithen@apache.org wrote:
>> Author: veithen
>> Date: Thu Apr  9 19:07:29 2009
>> New Revision: 763769
>>
>> URL: http://svn.apache.org/viewvc?rev=763769&view=rev
>> Log:
>> Fixing the versions of axis2-transport-http and axis2-transport-local, which are part of Axis2 now.
>>
>> Modified:
>>     synapse/trunk/java/pom.xml
>>
>> Modified: synapse/trunk/java/pom.xml
>> URL: http://svn.apache.org/viewvc/synapse/trunk/java/pom.xml?rev=763769&r1=763768&r2=763769&view=diff
>> ==============================================================================
>> --- synapse/trunk/java/pom.xml (original)
>> +++ synapse/trunk/java/pom.xml Thu Apr  9 19:07:29 2009
>> @@ -269,27 +269,27 @@
>>              </dependency>
>>              <dependency>
>>                  <groupId>org.apache.axis2</groupId>
>> -                <artifactId>axis2-transport-base</artifactId>
>> -                <version>${axis2.transport.version}</version>
>> +                <artifactId>axis2-transport-http</artifactId>
>> +                <version>${axis2.version}</version>
>>              </dependency>
>>              <dependency>
>>                  <groupId>org.apache.axis2</groupId>
>> -                <artifactId>axis2-transport-http</artifactId>
>> -                <version>${axis2.transport.version}</version>
>> +                <artifactId>axis2-transport-local</artifactId>
>> +                <version>${axis2.version}</version>
>>              </dependency>
>>              <dependency>
>>                  <groupId>org.apache.axis2</groupId>
>> -                <artifactId>axis2-transport-jms</artifactId>
>> +                <artifactId>axis2-transport-base</artifactId>
>>                  <version>${axis2.transport.version}</version>
>>              </dependency>
>>              <dependency>
>>                  <groupId>org.apache.axis2</groupId>
>> -                <artifactId>axis2-transport-mail</artifactId>
>> +                <artifactId>axis2-transport-jms</artifactId>
>>                  <version>${axis2.transport.version}</version>
>>              </dependency>
>>              <dependency>
>>                  <groupId>org.apache.axis2</groupId>
>> -                <artifactId>axis2-transport-local</artifactId>
>> +                <artifactId>axis2-transport-mail</artifactId>
>>                  <version>${axis2.transport.version}</version>
>>              </dependency>
>>              <dependency>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
> For additional commands, e-mail: dev-help@synapse.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


Re: svn commit: r763769 - /synapse/trunk/java/pom.xml

Posted by Glen Daniels <gl...@thoughtcraft.com>.
Hi Andreas:

Couple of quick comments -

Just because the transports are part of Axis2 doesn't necessarily mean that
they will always and only be released along with Axis2 distributions.  I'd
like it to be possible to do a maintenance rev on the transports without a
full A2 release.  For now this seems fine, just a heads-up for later, when we
might want individual versions.

Re: the other transports, you might want to split them out into
axis2.mailTransport.version, axis2.jmsTransport.version, etc. due to the
possibility of the transports evolving independently.

--Glen

veithen@apache.org wrote:
> Author: veithen
> Date: Thu Apr  9 19:07:29 2009
> New Revision: 763769
> 
> URL: http://svn.apache.org/viewvc?rev=763769&view=rev
> Log:
> Fixing the versions of axis2-transport-http and axis2-transport-local, which are part of Axis2 now.
> 
> Modified:
>     synapse/trunk/java/pom.xml
> 
> Modified: synapse/trunk/java/pom.xml
> URL: http://svn.apache.org/viewvc/synapse/trunk/java/pom.xml?rev=763769&r1=763768&r2=763769&view=diff
> ==============================================================================
> --- synapse/trunk/java/pom.xml (original)
> +++ synapse/trunk/java/pom.xml Thu Apr  9 19:07:29 2009
> @@ -269,27 +269,27 @@
>              </dependency>
>              <dependency>
>                  <groupId>org.apache.axis2</groupId>
> -                <artifactId>axis2-transport-base</artifactId>
> -                <version>${axis2.transport.version}</version>
> +                <artifactId>axis2-transport-http</artifactId>
> +                <version>${axis2.version}</version>
>              </dependency>
>              <dependency>
>                  <groupId>org.apache.axis2</groupId>
> -                <artifactId>axis2-transport-http</artifactId>
> -                <version>${axis2.transport.version}</version>
> +                <artifactId>axis2-transport-local</artifactId>
> +                <version>${axis2.version}</version>
>              </dependency>
>              <dependency>
>                  <groupId>org.apache.axis2</groupId>
> -                <artifactId>axis2-transport-jms</artifactId>
> +                <artifactId>axis2-transport-base</artifactId>
>                  <version>${axis2.transport.version}</version>
>              </dependency>
>              <dependency>
>                  <groupId>org.apache.axis2</groupId>
> -                <artifactId>axis2-transport-mail</artifactId>
> +                <artifactId>axis2-transport-jms</artifactId>
>                  <version>${axis2.transport.version}</version>
>              </dependency>
>              <dependency>
>                  <groupId>org.apache.axis2</groupId>
> -                <artifactId>axis2-transport-local</artifactId>
> +                <artifactId>axis2-transport-mail</artifactId>
>                  <version>${axis2.transport.version}</version>
>              </dependency>
>              <dependency>
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org