Do you mean that if I completely delete a project from Continuum and then add 
the project again, it is supposed to retain the old group name?  This is what I 
did; and one would think that deleting the project should remove the old 
groupName.

-dh

-----Original Message-----
From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 10, 2006 12:11 PM
To: [email protected]
Subject: Re: Apparent bug, can't change group

Just to be sure. The name of your project was defined in your pom before you 
added it in Continuum. 
The groupName is set in Continuum only when you add the project in Continuum, 
it can't be redefined 
after for now.

Emmanuel

Dave Hoffer a écrit :
> Emmanuel,
> 
> I verified the name tag contents of:
> 
> working-directory\21\pom.xml is <name>xrite-colorlib</name>
> working-directory\6\pom.xml is <name>xrite-commons</name>
> 
> This all seems correct to me.
> 
> -dh
> 
> 
> -----Original Message-----
> From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] 
> Sent: Monday, April 10, 2006 11:50 AM
> To: [email protected]
> Subject: Re: Apparent bug, can't change group
> 
> Can you check in files in working directory of your project in continuum if 
> it's the correct pom 
> that was checkouted.
> 
> Perhaps you updated the pom in the wrong view in starteam
> 
> Emmanuel
> 
> Dave Hoffer a écrit :
> 
>>Emmanuel,
>>
>>Here are the pom files for the two projects I have.  The Group name that 
>>appears is 'xrite-commons component' for both projects.  It seems they should 
>>be 'xrite-commons' and 'xrite-colorlib' given the name tag.
>>
>>Like I said, it is possible the name tag was 'xrite-commons component' when I 
>>first added the project(s), but I have sense deleted the project after 
>>correcting the name tag and re-added the project and it 'remembers' the old 
>>name or something...
>>
>>-dh
>>
>>
>>-----Original Message-----
>>From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] 
>>Sent: Monday, April 10, 2006 10:28 AM
>>To: [email protected]
>>Subject: Re: Apparent bug, can't change group
>>
>>send us your pom you added in Add Project screen and the group name that 
>>appears in Continuum.
>>
>>Where is group name that appears come from?
>>
>>Emmanuel
>>
>>Dave Hoffer a écrit :
>>
>>
>>>Yes I do (it is the same as <artifactId>), however the Group name is 
>>>different.
>>>
>>>-dh
>>>
>>>-----Original Message-----
>>>From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] 
>>>Sent: Monday, April 10, 2006 7:43 AM
>>>To: [email protected]
>>>Subject: Re: Apparent bug, can't change group
>>>
>>>Do you have a <name> defined in your pom?
>>>
>>>Emmanuel
>>>
>>>Dave Hoffer a écrit :
>>>
>>>
>>>
>>>>I am adding Maven2 projects; all it asks me for is the pom.xml file in the 
>>>>Add Project screen.  Once the project has been added, the edit screen does 
>>>>not show the group name.
>>>>
>>>>-dh
>>>>
>>>>-----Original Message-----
>>>>From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] 
>>>>Sent: Monday, April 10, 2006 3:41 AM
>>>>To: [email protected]
>>>>Subject: Re: Apparent bug, can't change group
>>>>
>>>>The group name used is the name of the project you add in the Add Project 
>>>>screen.
>>>>
>>>>Emmanuel
>>>>
>>>>Dave Hoffer a écrit :
>>>>
>>>>
>>>>
>>>>
>>>>>I just configured my first 2 projects in continuum.  
>>>>>
>>>>>
>>>>>
>>>>>I don't recall how Continuum got the Group for the project...possibly
>>>>
>>>>>from my pom file; in any case I had an error in the group name so I
>>>>
>>>>
>>>>
>>>>>deleted the project and re-added the project.  The old Group name is
>>>>>still being used.  I cannot seem to get it to ever read the value in my
>>>>>pom file.
>>>>>
>>>>>
>>>>>
>>>>>Is this a bug or am I doing this wrong?
>>>>>
>>>>>
>>>>>
>>>>>-dh
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>------------------------------------------------------------------------
>>
>><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";>
>>  <organization>
>>      <name>X-Rite</name>
>>      <url>www.x-rite.com</url>
>>  </organization>
>>  <modelVersion>4.0.0</modelVersion>
>>  <groupId>com.xrite</groupId>
>>  <artifactId>xrite-commons</artifactId>
>>  <packaging>jar</packaging>
>>  <version>1.0-SNAPSHOT</version>
>>  <name>xrite-commons</name>
>>  <!--url>http://maven.apache.org</url-->
>>  <dependencies>
>>    <dependency>
>>      <groupId>junit</groupId>
>>      <artifactId>junit</artifactId>
>>      <version>3.8.1</version>
>>      <scope>test</scope>
>>    </dependency>
>>  </dependencies>
>>  <scm>
>>    <connection>scm:starteam:XRBUILD:[EMAIL 
>> PROTECTED]:49201/Components/xrite-commons/</connection>
>>    <developerConnection>scm:starteam:XRBUILD:[EMAIL 
>> PROTECTED]:49201/Components/xrite-commons/</developerConnection>
>>  </scm>
>>  <developers>
>>    <developer>
>>      <name>David Hoffer</name>
>>      <id>dhoffer</id>
>>      <email>[EMAIL PROTECTED]</email>
>>    </developer>
>>  </developers>
>>  <ciManagement>
>>        <system>continuum</system>
>>        <notifiers>
>>              <notifier>
>>                <type>mail</type>
>>                <configuration>
>>                      <address>[EMAIL PROTECTED]</address>
>>                </configuration>
>>              </notifier>
>>        </notifiers>
>>  </ciManagement>
>>  <build>
>>    <plugins>
>>              <plugin>
>>                      <groupId>org.apache.maven.plugins</groupId>
>>                      <artifactId>maven-compiler-plugin</artifactId>
>>                      <configuration>
>>                              <source>1.5</source>
>>                              <target>1.5</target>
>>                      </configuration>
>>              </plugin>
>>              <plugin>
>>                      <groupId>org.apache.maven.plugins</groupId>
>>                      <artifactId>maven-jar-plugin</artifactId>
>>                      <executions>
>>                              <execution>
>>                      <goals>
>>                              <goal>test-jar</goal>
>>                      </goals>
>>                      </execution>
>>                      </executions>
>>              </plugin>
>>              <plugin>
>>                      <groupId>org.apache.maven.plugins</groupId>
>>                      <artifactId>maven-jar-plugin</artifactId>
>>                      <configuration>
>>                      <archive>
>>                              <manifestEntries>
>>                                      <mode>development</mode>
>>                                      <url>${pom.url}</url>
>>                              </manifestEntries>
>>                      </archive>
>>                      </configuration>
>>              </plugin>
>>      </plugins>
>>      <extensions>
>>              <!--This extension is to enable ftp distributionManagement-->
>>              <extension>
>>                      <groupId>org.apache.maven.wagon</groupId>
>>                      <artifactId>wagon-ftp</artifactId>
>>                      <version>1.0-alpha-6</version>
>>              </extension>
>>    </extensions>
>>  </build>
>>  <reporting>
>>    <plugins>
>>              <plugin>
>>                      <!--Provides creating jar of source-->
>>                      <groupId>org.apache.maven.plugins</groupId>
>>                      <artifactId>maven-source-plugin</artifactId>
>>              </plugin>
>>              <plugin>
>>                      <!--Provides javadocs-->
>>                      <groupId>org.apache.maven.plugins</groupId>
>>                      <artifactId>maven-javadoc-plugin</artifactId>
>>              </plugin>
>>              <plugin>
>>                      <!--Provides indexed and cross-referenced HTML version 
>> of your source code-->
>>                      <groupId>org.codehaus.mojo</groupId>
>>                      <artifactId>jxr-maven-plugin</artifactId>
>>              </plugin>   
>>      <plugin>
>>        <groupId>org.apache.maven.plugins</groupId>
>>        <artifactId>maven-project-info-reports-plugin</artifactId>
>>      </plugin>
>>        <plugin>
>>              <!--Provides unit test reports-->
>>        <groupId>surefire</groupId>
>>        <artifactId>maven-surefire-plugin</artifactId>
>>      </plugin>
>>    </plugins>
>>  </reporting>
>>  <distributionManagement>
>>      <repository>
>>              <id>inhouse</id>
>>              <name>Inhouse Internal Release Repository</name>
>>              <url>ftp://XRBUILD.xrite.com/inhouse</url>
>>              
>> <!--url>http://XRBUILD.xrite.com/maven2_repositories/inhouse</url-->
>>      </repository>
>>      <snapshotRepository>
>>              <id>inhouse_snapshot</id>
>>              <name>Inhouse Internal Snapshot Repository</name>
>>              <url>ftp://XRBUILD.xrite.com/inhouse_snapshot</url>
>>              
>> <!--url>http://XRBUILD.xrite.com/maven2_repositories/inhouse_snapshot</url-->
>>              <uniqueVersion>true</uniqueVersion>
>>      </snapshotRepository>
>>  </distributionManagement>
>></project>
>>
>>
>>------------------------------------------------------------------------
>>
>><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";>
>>  <organization>
>>      <name>X-Rite</name>
>>      <url>www.x-rite.com</url>
>>  </organization>
>>  <modelVersion>4.0.0</modelVersion>
>>  <groupId>com.xrite</groupId>
>>  <artifactId>xrite-colorlib</artifactId>
>>  <packaging>jar</packaging>
>>  <version>1.0-SNAPSHOT</version>
>>  <name>xrite-colorlib</name>
>>  <!--url>http://maven.apache.org</url-->
>>  <dependencies>
>>    <dependency>
>>      <groupId>junit</groupId>
>>      <artifactId>junit</artifactId>
>>      <version>3.8.1</version>
>>      <scope>test</scope>
>>    </dependency>
>>    <dependency>
>>      <groupId>com.xrite</groupId>
>>      <artifactId>xrite-commons</artifactId>
>>      <version>1.0-SNAPSHOT</version>
>>        <scope>compile</scope>
>>    </dependency>
>>  </dependencies>
>>  <scm>
>>    <connection>scm:starteam:XRBUILD:[EMAIL 
>> PROTECTED]:49201/Components/xrite-colorlib/</connection>
>>    <developerConnection>scm:starteam:XRBUILD:[EMAIL 
>> PROTECTED]:49201/Components/xrite-colorlib/</developerConnection>
>>  </scm>
>>  <developers>
>>    <developer>
>>      <name>David Hoffer</name>
>>      <id>dhoffer</id>
>>      <email>[EMAIL PROTECTED]</email>
>>    </developer>
>>  </developers>
>>  <ciManagement>
>>        <system>continuum</system>
>>        <notifiers>
>>              <notifier>
>>                <type>mail</type>
>>                <configuration>
>>                      <address>[EMAIL PROTECTED]</address>
>>                </configuration>
>>              </notifier>
>>        </notifiers>
>>  </ciManagement>
>>  <build>
>>    <plugins>
>>          <plugin>
>>              <groupId>org.apache.maven.plugins</groupId>
>>              <artifactId>maven-compiler-plugin</artifactId>
>>              <configuration>
>>                  <source>1.5</source>
>>                  <target>1.5</target>
>>              </configuration>
>>           </plugin>
>>               <plugin>
>>             <groupId>org.apache.maven.plugins</groupId>
>>             <artifactId>maven-jar-plugin</artifactId>
>>             <executions>
>>               <execution>
>>                 <goals>
>>                   <goal>test-jar</goal>
>>                 </goals>
>>               </execution>
>>             </executions>
>>           </plugin>
>>               <plugin>
>>                      <groupId>org.apache.maven.plugins</groupId>
>>                      <artifactId>maven-jar-plugin</artifactId>
>>                      <configuration>
>>                        <archive>
>>                          <manifestEntries>
>>                            <mode>development</mode>
>>                            <url>${pom.url}</url>
>>                          </manifestEntries>
>>                        </archive>
>>                      </configuration>
>>               </plugin>
>>     </plugins>
>>       <extensions>
>>              <!--This extension is to enable ftp distributionManagement-->
>>              <extension>
>>                      <groupId>org.apache.maven.wagon</groupId>
>>                      <artifactId>wagon-ftp</artifactId>
>>                      <version>1.0-alpha-6</version>
>>              </extension>
>>    </extensions>
>>  </build>
>>  <reporting>
>>    <plugins>
>>              <plugin>
>>                      <!--Provides creating jar of source-->
>>                      <groupId>org.apache.maven.plugins</groupId>
>>                      <artifactId>maven-source-plugin</artifactId>
>>              </plugin>
>>              <plugin>
>>                      <!--Provides javadocs-->
>>                      <groupId>org.apache.maven.plugins</groupId>
>>                      <artifactId>maven-javadoc-plugin</artifactId>
>>              </plugin>
>>              <plugin>
>>                      <!--Provides indexed and cross-referenced HTML version 
>> of your source code-->
>>                      <groupId>org.codehaus.mojo</groupId>
>>                      <artifactId>jxr-maven-plugin</artifactId>
>>              </plugin> 
>>              <plugin>
>>                      <groupId>org.apache.maven.plugins</groupId>
>>                      
>> <artifactId>maven-project-info-reports-plugin</artifactId>
>>              </plugin>
>>              <plugin>
>>                      <!--Provides unit test reports-->
>>                      <groupId>surefire</groupId>
>>                      <artifactId>maven-surefire-plugin</artifactId>
>>              </plugin>
>>    </plugins>
>>  </reporting>
>>  <distributionManagement>
>>      <repository>
>>              <id>inhouse</id>
>>              <name>Inhouse Internal Release Repository</name>
>>              <url>ftp://XRBUILD.xrite.com/inhouse</url>
>>              
>> <!--url>http://XRBUILD.xrite.com/maven2_repositories/inhouse</url-->
>>      </repository>
>>      <snapshotRepository>
>>              <id>inhouse_snapshot</id>
>>              <name>Inhouse Internal Snapshot Repository</name>
>>              <url>ftp://XRBUILD.xrite.com/inhouse_snapshot</url>
>>              
>> <!--url>http://XRBUILD.xrite.com/maven2_repositories/inhouse_snapshot</url-->
>>              <uniqueVersion>true</uniqueVersion>
>>      </snapshotRepository>
>>  </distributionManagement>
>></project>
> 
> 
> 
> 
> 

Reply via email to