Hi I saw that this topic has allready been discussed on the list. Is there a solution for this issue? I have got the same problem. In the group colum all my projects have the same value: "Zuerich Tool". That was the value of the first project I added.
This is how I can reproduce this bug on my computer: - Unzip continuum to c:\continuum-1.0.3 - Start the server with the run.bat file - Go to http://localhost:8080/continuum/servlet/continuum - Create an account (I uses "root" as username and "123" as password) - Login - Click on Maven2.0+ Project and add path to pomA.xml in the "Upload POM" field - Click on Maven2.0+ Project and add path to pomB.xml in the "Upload POM" field -> Both tools have the same value in the group column. Cheers, michael
<?xml version="1.0" encoding="UTF-8"?><project> <modelVersion>4.0.0</modelVersion> <groupId>ch.hplus</groupId> <artifactId>zuerich</artifactId> <name>Zuerich Tool</name> <version>1.2-SNAPSHOT</version> <url>http://www.hplus.ch</url> <scm> <connection>scm:svn:http://some_server/svn/java/trunk/zuerich</connection> <developerConnection>scm:svn:http://some_server/svn/java/trunk/zuerich</developerConnection> <url>http://some_server/websvn/listing.php?repname=java</url> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>
<?xml version="1.0" encoding="UTF-8"?><project> <modelVersion>4.0.0</modelVersion> <groupId>ch.hplus</groupId> <artifactId>patrec</artifactId> <name>Patrec Konverter</name> <version>1.5-SNAPSHOT</version> <url>http://www.hplus.ch</url> <scm> <connection>scm:svn:http://some_server/svn/java/trunk/PatrecConverter</connection> <developerConnection>scm:svn:http://some_server/svn/java/trunk/PatrecConverter</developerConnection> <url>http://some_server/websvn/listing.php?repname=java</url> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>
