You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by Christoph Emmersberger <ce...@googlemail.com> on 2012/04/11 14:10:18 UTC

CXF 2.5.2 Services: Maven Name

Dear all,

I'd recommend renaming the Maven name of the CXF 2.5.2 services component in the future to avoid confusion with the runtime component.

The current pom structure looks like:

<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.apache.cxf.services</groupId>
    <artifactId>cxf-services</artifactId>
    <packaging>pom</packaging>
    <version>2.5.2</version>
    <name>Apache CXF Runtime</name>
    <url>http://cxf.apache.org</url>

    <parent>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf</artifactId>
        <relativePath>../pom.xml</relativePath>
        <version>2.5.2</version>
    </parent>

    <modules>
        <module>sts</module>
        <module>wsn</module>
    </modules>

</project>

For the future it might be useful having something like

<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.apache.cxf.services</groupId>
    <artifactId>cxf-services</artifactId>
    <packaging>pom</packaging>
    <version>2.5.2</version>
    <name>Apache CXF Services</name>
    <url>http://cxf.apache.org</url>

    <parent>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf</artifactId>
        <relativePath>../pom.xml</relativePath>
        <version>2.5.2</version>
    </parent>

    <modules>
        <module>sts</module>
        <module>wsn</module>
    </modules>

</project>

Many thanks and kind regards,

Christoph

Re: CXF 2.5.2 Services: Maven Name

Posted by Freeman Fang <fr...@gmail.com>.
Hi,

Thanks for the patch.

But you need reattach this patch and select the "Grant the Apache  
License" button.

Freeman

On 2012-4-11, at 下午9:08, Christoph Emmersberger wrote:

> Hi Freeman,
>
> here is the requested Jira including the patch:
>
> https://issues.apache.org/jira/browse/CXF-4236
>
> Many thanks and kind regards,
>
> Christoph
>
>
> On 11.04.2012, at 14:25, Freeman Fang wrote:
>
>> Hi,
>>
>> It's a good suggestion, would you please create a jira and append a  
>> patch if you want?
>>
>> Thanks
>> Freeman
>> On 2012-4-11, at 下午8:10, Christoph Emmersberger wrote:
>>
>>> Dear all,
>>>
>>> I'd recommend renaming the Maven name of the CXF 2.5.2 services  
>>> component in the future to avoid confusion with the runtime  
>>> component.
>>>
>>> The current pom structure looks like:
>>>
>>> <project xmlns="http://maven.apache.org/POM/4.0.0" 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 
>>> ">
>>>  <modelVersion>4.0.0</modelVersion>
>>>  <groupId>org.apache.cxf.services</groupId>
>>>  <artifactId>cxf-services</artifactId>
>>>  <packaging>pom</packaging>
>>>  <version>2.5.2</version>
>>>  <name>Apache CXF Runtime</name>
>>>  <url>http://cxf.apache.org</url>
>>>
>>>  <parent>
>>>      <groupId>org.apache.cxf</groupId>
>>>      <artifactId>cxf</artifactId>
>>>      <relativePath>../pom.xml</relativePath>
>>>      <version>2.5.2</version>
>>>  </parent>
>>>
>>>  <modules>
>>>      <module>sts</module>
>>>      <module>wsn</module>
>>>  </modules>
>>>
>>> </project>
>>>
>>> For the future it might be useful having something like
>>>
>>> <project xmlns="http://maven.apache.org/POM/4.0.0" 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 
>>> ">
>>>  <modelVersion>4.0.0</modelVersion>
>>>  <groupId>org.apache.cxf.services</groupId>
>>>  <artifactId>cxf-services</artifactId>
>>>  <packaging>pom</packaging>
>>>  <version>2.5.2</version>
>>>  <name>Apache CXF Services</name>
>>>  <url>http://cxf.apache.org</url>
>>>
>>>  <parent>
>>>      <groupId>org.apache.cxf</groupId>
>>>      <artifactId>cxf</artifactId>
>>>      <relativePath>../pom.xml</relativePath>
>>>      <version>2.5.2</version>
>>>  </parent>
>>>
>>>  <modules>
>>>      <module>sts</module>
>>>      <module>wsn</module>
>>>  </modules>
>>>
>>> </project>
>>>
>>> Many thanks and kind regards,
>>>
>>> Christoph
>>
>> ---------------------------------------------
>> Freeman Fang
>>
>> FuseSource
>> Email:ffang@fusesource.com
>> Web: fusesource.com
>> Twitter: freemanfang
>> Blog: http://freemanfang.blogspot.com
>> http://blog.sina.com.cn/u/1473905042
>> weibo: http://weibo.com/u/1473905042
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>

---------------------------------------------
Freeman Fang

FuseSource
Email:ffang@fusesource.com
Web: fusesource.com
Twitter: freemanfang
Blog: http://freemanfang.blogspot.com
http://blog.sina.com.cn/u/1473905042
weibo: http://weibo.com/u/1473905042











Re: CXF 2.5.2 Services: Maven Name

Posted by Christoph Emmersberger <ce...@googlemail.com>.
Hi Freeman,

here is the requested Jira including the patch:

https://issues.apache.org/jira/browse/CXF-4236

Many thanks and kind regards,

Christoph


On 11.04.2012, at 14:25, Freeman Fang wrote:

> Hi,
> 
> It's a good suggestion, would you please create a jira and append a patch if you want?
> 
> Thanks
> Freeman
> On 2012-4-11, at 下午8:10, Christoph Emmersberger wrote:
> 
>> Dear all,
>> 
>> I'd recommend renaming the Maven name of the CXF 2.5.2 services component in the future to avoid confusion with the runtime component.
>> 
>> The current pom structure looks like:
>> 
>> <project xmlns="http://maven.apache.org/POM/4.0.0" 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">
>>   <modelVersion>4.0.0</modelVersion>
>>   <groupId>org.apache.cxf.services</groupId>
>>   <artifactId>cxf-services</artifactId>
>>   <packaging>pom</packaging>
>>   <version>2.5.2</version>
>>   <name>Apache CXF Runtime</name>
>>   <url>http://cxf.apache.org</url>
>> 
>>   <parent>
>>       <groupId>org.apache.cxf</groupId>
>>       <artifactId>cxf</artifactId>
>>       <relativePath>../pom.xml</relativePath>
>>       <version>2.5.2</version>
>>   </parent>
>> 
>>   <modules>
>>       <module>sts</module>
>>       <module>wsn</module>
>>   </modules>
>> 
>> </project>
>> 
>> For the future it might be useful having something like
>> 
>> <project xmlns="http://maven.apache.org/POM/4.0.0" 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">
>>   <modelVersion>4.0.0</modelVersion>
>>   <groupId>org.apache.cxf.services</groupId>
>>   <artifactId>cxf-services</artifactId>
>>   <packaging>pom</packaging>
>>   <version>2.5.2</version>
>>   <name>Apache CXF Services</name>
>>   <url>http://cxf.apache.org</url>
>> 
>>   <parent>
>>       <groupId>org.apache.cxf</groupId>
>>       <artifactId>cxf</artifactId>
>>       <relativePath>../pom.xml</relativePath>
>>       <version>2.5.2</version>
>>   </parent>
>> 
>>   <modules>
>>       <module>sts</module>
>>       <module>wsn</module>
>>   </modules>
>> 
>> </project>
>> 
>> Many thanks and kind regards,
>> 
>> Christoph
> 
> ---------------------------------------------
> Freeman Fang
> 
> FuseSource
> Email:ffang@fusesource.com
> Web: fusesource.com
> Twitter: freemanfang
> Blog: http://freemanfang.blogspot.com
> http://blog.sina.com.cn/u/1473905042
> weibo: http://weibo.com/u/1473905042
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 


Re: CXF 2.5.2 Services: Maven Name

Posted by Freeman Fang <fr...@gmail.com>.
Hi,

It's a good suggestion, would you please create a jira and append a  
patch if you want?

Thanks
Freeman
On 2012-4-11, at 下午8:10, Christoph Emmersberger wrote:

> Dear all,
>
> I'd recommend renaming the Maven name of the CXF 2.5.2 services  
> component in the future to avoid confusion with the runtime component.
>
> The current pom structure looks like:
>
> <project xmlns="http://maven.apache.org/POM/4.0.0" 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 
> ">
>    <modelVersion>4.0.0</modelVersion>
>    <groupId>org.apache.cxf.services</groupId>
>    <artifactId>cxf-services</artifactId>
>    <packaging>pom</packaging>
>    <version>2.5.2</version>
>    <name>Apache CXF Runtime</name>
>    <url>http://cxf.apache.org</url>
>
>    <parent>
>        <groupId>org.apache.cxf</groupId>
>        <artifactId>cxf</artifactId>
>        <relativePath>../pom.xml</relativePath>
>        <version>2.5.2</version>
>    </parent>
>
>    <modules>
>        <module>sts</module>
>        <module>wsn</module>
>    </modules>
>
> </project>
>
> For the future it might be useful having something like
>
> <project xmlns="http://maven.apache.org/POM/4.0.0" 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 
> ">
>    <modelVersion>4.0.0</modelVersion>
>    <groupId>org.apache.cxf.services</groupId>
>    <artifactId>cxf-services</artifactId>
>    <packaging>pom</packaging>
>    <version>2.5.2</version>
>    <name>Apache CXF Services</name>
>    <url>http://cxf.apache.org</url>
>
>    <parent>
>        <groupId>org.apache.cxf</groupId>
>        <artifactId>cxf</artifactId>
>        <relativePath>../pom.xml</relativePath>
>        <version>2.5.2</version>
>    </parent>
>
>    <modules>
>        <module>sts</module>
>        <module>wsn</module>
>    </modules>
>
> </project>
>
> Many thanks and kind regards,
>
> Christoph

---------------------------------------------
Freeman Fang

FuseSource
Email:ffang@fusesource.com
Web: fusesource.com
Twitter: freemanfang
Blog: http://freemanfang.blogspot.com
http://blog.sina.com.cn/u/1473905042
weibo: http://weibo.com/u/1473905042