You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2007/02/14 05:59:38 UTC

svn commit: r507391 - in /webservices/axis2/trunk/java/modules/tool: axis2-aar-maven-plugin/pom.xml axis2-wsdl2code-maven-plugin/pom.xml

Author: dims
Date: Tue Feb 13 20:59:37 2007
New Revision: 507391

URL: http://svn.apache.org/viewvc?view=rev&rev=507391
Log:
oops! forgot to set the parent correctly

Modified:
    webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml
    webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml

Modified: webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml?view=diff&rev=507391&r1=507390&r2=507391
==============================================================================
--- webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml Tue Feb 13 20:59:37 2007
@@ -20,9 +20,10 @@
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <groupId>org.apache</groupId>
-    <artifactId>apache</artifactId>
-    <version>3</version>
+    <groupId>org.apache.axis2</groupId>
+    <artifactId>axis2-parent</artifactId>
+    <version>SNAPSHOT</version>
+    <relativePath>../../parent/pom.xml</relativePath>    
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>axis2-aar-maven-plugin</artifactId>

Modified: webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml?view=diff&rev=507391&r1=507390&r2=507391
==============================================================================
--- webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml Tue Feb 13 20:59:37 2007
@@ -20,9 +20,10 @@
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <groupId>org.apache.axis2.maven2</groupId>
-    <artifactId>axis2-maven-tools</artifactId>
+    <groupId>org.apache.axis2</groupId>
+    <artifactId>axis2-parent</artifactId>
     <version>SNAPSHOT</version>
+    <relativePath>../../parent/pom.xml</relativePath>    
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>axis2-wsdl2code-maven-plugin</artifactId>



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org


Re: svn commit: r507391 - in /webservices/axis2/trunk/java/modules/tool: axis2-aar-maven-plugin/pom.xml axis2-wsdl2code-maven-plugin/pom.xml

Posted by David Illsley <da...@gmail.com>.
Sorry dims, I've just noticed the preceding commits, maybe you've
found a way round the problem I was talking about... :-)
David

On 14/02/07, David Illsley <da...@gmail.com> wrote:
> Hi Dims,
> I changed the parent from being a common parent to being the standard
> maven one because it's not possible to do a full build from nothing
> with a new version number including the mar and aar plugins. They have
> to be separated out. If they have a common parent, dealing with
> releasing a new version will be a lot more difficult.
>
> David
>
> On 14/02/07, dims@apache.org <di...@apache.org> wrote:
> > Author: dims
> > Date: Tue Feb 13 20:59:37 2007
> > New Revision: 507391
> >
> > URL: http://svn.apache.org/viewvc?view=rev&rev=507391
> > Log:
> > oops! forgot to set the parent correctly
> >
> > Modified:
> >     webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml
> >     webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
> >
> > Modified: webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml
> > URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml?view=diff&rev=507391&r1=507390&r2=507391
> > ==============================================================================
> > --- webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml (original)
> > +++ webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml Tue Feb 13 20:59:37 2007
> > @@ -20,9 +20,10 @@
> >      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> >      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
> >    <parent>
> > -    <groupId>org.apache</groupId>
> > -    <artifactId>apache</artifactId>
> > -    <version>3</version>
> > +    <groupId>org.apache.axis2</groupId>
> > +    <artifactId>axis2-parent</artifactId>
> > +    <version>SNAPSHOT</version>
> > +    <relativePath>../../parent/pom.xml</relativePath>
> >    </parent>
> >    <modelVersion>4.0.0</modelVersion>
> >    <artifactId>axis2-aar-maven-plugin</artifactId>
> >
> > Modified: webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
> > URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml?view=diff&rev=507391&r1=507390&r2=507391
> > ==============================================================================
> > --- webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml (original)
> > +++ webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml Tue Feb 13 20:59:37 2007
> > @@ -20,9 +20,10 @@
> >      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> >      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
> >    <parent>
> > -    <groupId>org.apache.axis2.maven2</groupId>
> > -    <artifactId>axis2-maven-tools</artifactId>
> > +    <groupId>org.apache.axis2</groupId>
> > +    <artifactId>axis2-parent</artifactId>
> >      <version>SNAPSHOT</version>
> > +    <relativePath>../../parent/pom.xml</relativePath>
> >    </parent>
> >    <modelVersion>4.0.0</modelVersion>
> >    <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
> > For additional commands, e-mail: axis-cvs-help@ws.apache.org
> >
> >
>
>
> --
> David Illsley - IBM Web Services Development
>


-- 
David Illsley - IBM Web Services Development

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


Re: svn commit: r507391 - in /webservices/axis2/trunk/java/modules/tool: axis2-aar-maven-plugin/pom.xml axis2-wsdl2code-maven-plugin/pom.xml

Posted by David Illsley <da...@gmail.com>.
Hi Dims,
I changed the parent from being a common parent to being the standard
maven one because it's not possible to do a full build from nothing
with a new version number including the mar and aar plugins. They have
to be separated out. If they have a common parent, dealing with
releasing a new version will be a lot more difficult.

David

On 14/02/07, dims@apache.org <di...@apache.org> wrote:
> Author: dims
> Date: Tue Feb 13 20:59:37 2007
> New Revision: 507391
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=507391
> Log:
> oops! forgot to set the parent correctly
>
> Modified:
>     webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml
>     webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
>
> Modified: webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml?view=diff&rev=507391&r1=507390&r2=507391
> ==============================================================================
> --- webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml (original)
> +++ webservices/axis2/trunk/java/modules/tool/axis2-aar-maven-plugin/pom.xml Tue Feb 13 20:59:37 2007
> @@ -20,9 +20,10 @@
>      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
>    <parent>
> -    <groupId>org.apache</groupId>
> -    <artifactId>apache</artifactId>
> -    <version>3</version>
> +    <groupId>org.apache.axis2</groupId>
> +    <artifactId>axis2-parent</artifactId>
> +    <version>SNAPSHOT</version>
> +    <relativePath>../../parent/pom.xml</relativePath>
>    </parent>
>    <modelVersion>4.0.0</modelVersion>
>    <artifactId>axis2-aar-maven-plugin</artifactId>
>
> Modified: webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
> URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml?view=diff&rev=507391&r1=507390&r2=507391
> ==============================================================================
> --- webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml (original)
> +++ webservices/axis2/trunk/java/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml Tue Feb 13 20:59:37 2007
> @@ -20,9 +20,10 @@
>      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
>    <parent>
> -    <groupId>org.apache.axis2.maven2</groupId>
> -    <artifactId>axis2-maven-tools</artifactId>
> +    <groupId>org.apache.axis2</groupId>
> +    <artifactId>axis2-parent</artifactId>
>      <version>SNAPSHOT</version>
> +    <relativePath>../../parent/pom.xml</relativePath>
>    </parent>
>    <modelVersion>4.0.0</modelVersion>
>    <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-cvs-help@ws.apache.org
>
>


-- 
David Illsley - IBM Web Services Development

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