r385 - / release-plugin-bug release-plugin-bug/other-project release-plugin-bug/other-project/other-project-api release-plugin-bug/other-project/other-project-api/src release-plugin-bug/other-project/other-project-api/src/main release-plugin-bug/other-project/other-project-api/src/main/java release-plugin-bug/other-project/other-project-api/src/main/java/bws release-plugin-bug/other-project/other-project-api/src/main/java/bws/entities release-plugin-bug/other-project/other-project-api/src/
Author: athimel Date: 2010-02-17 18:25:40 +0100 (Wed, 17 Feb 2010) New Revision: 385 Added: release-plugin-bug/ release-plugin-bug/other-project/ release-plugin-bug/other-project/other-project-api/ release-plugin-bug/other-project/other-project-api/pom.xml release-plugin-bug/other-project/other-project-api/src/ release-plugin-bug/other-project/other-project-api/src/main/ release-plugin-bug/other-project/other-project-api/src/main/java/ release-plugin-bug/other-project/other-project-api/src/main/java/bws/ release-plugin-bug/other-project/other-project-api/src/main/java/bws/entities/ release-plugin-bug/other-project/other-project-api/src/main/java/bws/entities/DummyEntity.java release-plugin-bug/other-project/other-project-api/src/main/java/bws/services/ release-plugin-bug/other-project/other-project-api/src/main/java/bws/services/Service.java release-plugin-bug/other-project/other-project-impl/ release-plugin-bug/other-project/other-project-impl/pom.xml release-plugin-bug/other-project/other-project-impl/src/ release-plugin-bug/other-project/other-project-impl/src/main/ release-plugin-bug/other-project/other-project-impl/src/main/java/ release-plugin-bug/other-project/other-project-impl/src/main/java/bws/ release-plugin-bug/other-project/other-project-impl/src/main/java/bws/services/ release-plugin-bug/other-project/other-project-impl/src/main/java/bws/services/impl/ release-plugin-bug/other-project/other-project-impl/src/main/java/bws/services/impl/ServiceImpl.java release-plugin-bug/other-project/pom.xml release-plugin-bug/test/ release-plugin-bug/test/pom.xml release-plugin-bug/test/test-api/ release-plugin-bug/test/test-api/pom.xml release-plugin-bug/test/test-api/src/ release-plugin-bug/test/test-api/src/main/ release-plugin-bug/test/test-api/src/main/java/ release-plugin-bug/test/test-api/src/main/java/bws/ release-plugin-bug/test/test-api/src/main/java/bws/entities/ release-plugin-bug/test/test-api/src/main/java/bws/entities/DummyEntity.java release-plugin-bug/test/test-api/src/main/java/bws/services/ release-plugin-bug/test/test-api/src/main/java/bws/services/Service.java release-plugin-bug/test/test-impl/ release-plugin-bug/test/test-impl/pom.xml release-plugin-bug/test/test-impl/src/ release-plugin-bug/test/test-impl/src/main/ release-plugin-bug/test/test-impl/src/main/java/ release-plugin-bug/test/test-impl/src/main/java/bws/ release-plugin-bug/test/test-impl/src/main/java/bws/services/ release-plugin-bug/test/test-impl/src/main/java/bws/services/impl/ release-plugin-bug/test/test-impl/src/main/java/bws/services/impl/ServiceImpl.java Log: Add backbone to test some maven-release-plugin bug Added: release-plugin-bug/other-project/other-project-api/pom.xml =================================================================== --- release-plugin-bug/other-project/other-project-api/pom.xml (rev 0) +++ release-plugin-bug/other-project/other-project-api/pom.xml 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + + <groupId>org.nuiton.sandbox</groupId> + <artifactId>other-project-api</artifactId> + + <parent> + <groupId>org.nuiton.sandbox</groupId> + <artifactId>other-project</artifactId> + <version>0.0-SNAPSHOT</version> + </parent> + + <!-- POM Relationships : Inheritance : Dependencies --> + <dependencies> + + </dependencies> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + + <name>org.nuiton.sandbox.other-project-api</name> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>jar</packaging> + + <build> + </build> + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + + <repositories> + </repositories> + + <profiles> + </profiles> + +</project> + Added: release-plugin-bug/other-project/other-project-api/src/main/java/bws/entities/DummyEntity.java =================================================================== --- release-plugin-bug/other-project/other-project-api/src/main/java/bws/entities/DummyEntity.java (rev 0) +++ release-plugin-bug/other-project/other-project-api/src/main/java/bws/entities/DummyEntity.java 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,16 @@ +package bws.entities; + +public class DummyEntity { + + private String id; + + public String getId() { + return this.id; + } + + public void setId(String id) { + this.id = id; + } + +} + Added: release-plugin-bug/other-project/other-project-api/src/main/java/bws/services/Service.java =================================================================== --- release-plugin-bug/other-project/other-project-api/src/main/java/bws/services/Service.java (rev 0) +++ release-plugin-bug/other-project/other-project-api/src/main/java/bws/services/Service.java 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,11 @@ +package bws.services; + +import java.util.List; +import bws.entities.DummyEntity; + +public interface Service { + + List<DummyEntity> findAll(); + +} + Added: release-plugin-bug/other-project/other-project-impl/pom.xml =================================================================== --- release-plugin-bug/other-project/other-project-impl/pom.xml (rev 0) +++ release-plugin-bug/other-project/other-project-impl/pom.xml 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + + <groupId>org.nuiton.sandbox</groupId> + <artifactId>other-project-impl</artifactId> + + <parent> + <groupId>org.nuiton.sandbox</groupId> + <artifactId>other-project</artifactId> + <version>0.0-SNAPSHOT</version> + </parent> + + <!-- POM Relationships : Inheritance : Dependencies --> + <dependencies> + + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>other-project-api</artifactId> + <version>${project.version}</version> + </dependency> + + </dependencies> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + + <name>org.nuiton.sandbox.other-project-impl</name> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>jar</packaging> + + <build> + </build> + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + + <repositories> + </repositories> + + <profiles> + </profiles> + +</project> + Added: release-plugin-bug/other-project/other-project-impl/src/main/java/bws/services/impl/ServiceImpl.java =================================================================== --- release-plugin-bug/other-project/other-project-impl/src/main/java/bws/services/impl/ServiceImpl.java (rev 0) +++ release-plugin-bug/other-project/other-project-impl/src/main/java/bws/services/impl/ServiceImpl.java 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,16 @@ +package bws.services.impl; + +import java.util.List; + +import bws.entities.DummyEntity; +import bws.services.Service; + +public class ServiceImpl implements Service { + + @Override + public List<DummyEntity> findAll() { + // TODO Auto-generated method stub + return null; + } + +} Added: release-plugin-bug/other-project/pom.xml =================================================================== --- release-plugin-bug/other-project/pom.xml (rev 0) +++ release-plugin-bug/other-project/pom.xml 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + + <groupId>org.nuiton.sandbox</groupId> + <artifactId>other-project</artifactId> + <version>0.0-SNAPSHOT</version> + + <modules> + <module>other-project-api</module> + <module>other-project-impl</module> + </modules> + + <!-- Source control management. --> + <scm> + <connection>scm:svn:http://svn.nuiton.org/svn/sandbox/release-plugin-bug/other-project</connection> + <developerConnection>scm:svn:http://svn.nuiton.org/svn/sandbox/release-plugin-bug/other-project</developerConnection> + <url>http://svn.nuiton.org/svn/sandbox/release-plugin-bug/other-project</url> + </scm> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + + <name>org.sharengo.sandbox.other-project</name> + + <description>Test project for some bug on maven-release-plugin</description> + <inceptionYear>2010</inceptionYear> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>pom</packaging> + + <properties> + <!-- for a multi-module, we have to set the projectId --> + <projectId>test</projectId> + </properties> + +</project> + Added: release-plugin-bug/test/pom.xml =================================================================== --- release-plugin-bug/test/pom.xml (rev 0) +++ release-plugin-bug/test/pom.xml 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + + <groupId>org.nuiton.sandbox</groupId> + <artifactId>test</artifactId> + <version>0.0-SNAPSHOT</version> + + <modules> + <module>test-api</module> + <module>test-impl</module> + </modules> + + <!-- Source control management. --> + <scm> + <connection>scm:svn:http://svn.nuiton.org/svn/sandbox/release-plugin-bug/test</connection> + <developerConnection>scm:svn:http://svn.nuiton.org/svn/sandbox/release-plugin-bug/test</developerConnection> + <url>http://svn.nuiton.org/svn/sandbox/release-plugin-bug/test</url> + </scm> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + + <name>org.sharengo.sandbox.test</name> + + <description>Test project for some bug on maven-release-plugin</description> + <inceptionYear>2010</inceptionYear> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>pom</packaging> + + <properties> + <!-- for a multi-module, we have to set the projectId --> + <projectId>test</projectId> + </properties> + +</project> + Added: release-plugin-bug/test/test-api/pom.xml =================================================================== --- release-plugin-bug/test/test-api/pom.xml (rev 0) +++ release-plugin-bug/test/test-api/pom.xml 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + + <groupId>org.nuiton.sandbox</groupId> + <artifactId>test-api</artifactId> + + <parent> + <groupId>org.nuiton.sandbox</groupId> + <artifactId>test</artifactId> + <version>0.0-SNAPSHOT</version> + </parent> + + <!-- POM Relationships : Inheritance : Dependencies --> + <dependencies> + + <dependency> + <groupId>org.nuiton.sandbox</groupId> + <artifactId>other-project-api</artifactId> + <version>0.0-SNAPSHOT</version> + </dependency> + + </dependencies> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + + <name>org.nuiton.sandbox.test-api</name> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>jar</packaging> + + <build> + </build> + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + + <repositories> + </repositories> + + <profiles> + </profiles> + +</project> + Added: release-plugin-bug/test/test-api/src/main/java/bws/entities/DummyEntity.java =================================================================== --- release-plugin-bug/test/test-api/src/main/java/bws/entities/DummyEntity.java (rev 0) +++ release-plugin-bug/test/test-api/src/main/java/bws/entities/DummyEntity.java 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,16 @@ +package bws.entities; + +public class DummyEntity { + + private String id; + + public String getId() { + return this.id; + } + + public void setId(String id) { + this.id = id; + } + +} + Added: release-plugin-bug/test/test-api/src/main/java/bws/services/Service.java =================================================================== --- release-plugin-bug/test/test-api/src/main/java/bws/services/Service.java (rev 0) +++ release-plugin-bug/test/test-api/src/main/java/bws/services/Service.java 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,11 @@ +package bws.services; + +import java.util.List; +import bws.entities.DummyEntity; + +public interface Service { + + List<DummyEntity> findAll(); + +} + Added: release-plugin-bug/test/test-impl/pom.xml =================================================================== --- release-plugin-bug/test/test-impl/pom.xml (rev 0) +++ release-plugin-bug/test/test-impl/pom.xml 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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/xsd/maven-4.0.0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <!-- ************************************************************* --> + <!-- *** POM Relationships *************************************** --> + <!-- ************************************************************* --> + + <groupId>org.nuiton.sandbox</groupId> + <artifactId>test-impl</artifactId> + + <parent> + <groupId>org.nuiton.sandbox</groupId> + <artifactId>test</artifactId> + <version>0.0-SNAPSHOT</version> + </parent> + + <!-- POM Relationships : Inheritance : Dependencies --> + <dependencies> + + <dependency> + <groupId>org.nuiton.sandbox</groupId> + <artifactId>other-project-impl</artifactId> + <version>0.0-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>test-api</artifactId> + <version>${project.version}</version> + </dependency> + + </dependencies> + + <!-- ************************************************************* --> + <!-- *** Project Information ************************************* --> + <!-- ************************************************************* --> + + <name>org.nuiton.sandbox.test-impl</name> + + <!-- ************************************************************* --> + <!-- *** Build Settings ****************************************** --> + <!-- ************************************************************* --> + + <packaging>jar</packaging> + + <build> + </build> + + <!-- ************************************************************* --> + <!-- *** Build Environment ************************************** --> + <!-- ************************************************************* --> + + <repositories> + </repositories> + + <profiles> + </profiles> + +</project> + Added: release-plugin-bug/test/test-impl/src/main/java/bws/services/impl/ServiceImpl.java =================================================================== --- release-plugin-bug/test/test-impl/src/main/java/bws/services/impl/ServiceImpl.java (rev 0) +++ release-plugin-bug/test/test-impl/src/main/java/bws/services/impl/ServiceImpl.java 2010-02-17 17:25:40 UTC (rev 385) @@ -0,0 +1,16 @@ +package bws.services.impl; + +import java.util.List; + +import bws.entities.DummyEntity; +import bws.services.Service; + +public class ServiceImpl implements Service { + + @Override + public List<DummyEntity> findAll() { + // TODO Auto-generated method stub + return null; + } + +}
participants (1)
-
athimelï¼ users.nuiton.org