Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-overridden-scm/subproject1/expected-pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-overridden-scm/subproject1/expected-pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-overridden-scm/subproject1/expected-pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-overridden-scm/subproject1/expected-pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,32 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1.0</version> + </parent> + + <artifactId>subproject1</artifactId> + + <scm> + <connection>scm:svn:file://localhost/tmp/scm-repo/tags/release-label/subproject1</connection> + <developerConnection>scm:svn:file://localhost/tmp/scm-repo/tags/release-label/subproject1</developerConnection> + <url>file://localhost/tmp/scm-repo/tags/release-label/subproject1</url> + </scm> +</project>
Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-overridden-scm/subproject1/expected-pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-overridden-scm/subproject1/pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-overridden-scm/subproject1/pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-overridden-scm/subproject1/pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-overridden-scm/subproject1/pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,32 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + + <artifactId>subproject1</artifactId> + + <scm> + <connection>scm:svn:file://localhost/tmp/scm-repo/trunk/subproject1</connection> + <developerConnection>scm:svn:file://localhost/tmp/scm-repo/trunk/subproject1</developerConnection> + <url>file://localhost/tmp/scm-repo/trunk/subproject1</url> + </scm> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-overridden-scm/subproject1/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/expected-pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/expected-pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/expected-pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/expected-pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,33 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1.0</version> + <packaging>pom</packaging> + + <scm> + <connection>scm:svn:file://localhost/tmp/scm-repo/tags/release-label</connection> + <developerConnection>scm:svn:file://localhost/tmp/scm-repo/tags/release-label</developerConnection> + <url>file://localhost/tmp/scm-repo/tags/release-label</url> + </scm> + + <modules> + <module>subproject1</module> + </modules> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/expected-pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,33 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <scm> + <connection>scm:svn:file://localhost/tmp/scm-repo/trunk</connection> + <developerConnection>scm:svn:file://localhost/tmp/scm-repo/trunk</developerConnection> + <url>file://localhost/tmp/scm-repo/trunk</url> + </scm> + + <modules> + <module>subproject1</module> + </modules> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/subproject1/expected-pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/subproject1/expected-pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/subproject1/expected-pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/subproject1/expected-pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,27 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1.0</version> + </parent> + + <artifactId>subproject1</artifactId> + <version>2.0</version> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/subproject1/expected-pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/subproject1/pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/subproject1/pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/subproject1/pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/subproject1/pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,27 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> + + <artifactId>subproject1</artifactId> + <version>2.0-SNAPSHOT</version> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-parent/subproject1/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/expected-pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/expected-pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/expected-pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/expected-pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,27 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1</version> + <packaging>pom</packaging> + + <modules> + <module>subproject1</module> + </modules> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/expected-pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,27 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1</version> + <packaging>pom</packaging> + + <modules> + <module>subproject1</module> + </modules> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/subproject1/expected-pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/subproject1/expected-pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/subproject1/expected-pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/subproject1/expected-pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,27 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1</version> + </parent> + + <artifactId>subproject1</artifactId> + <version>2.0</version> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/subproject1/expected-pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/subproject1/pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/subproject1/pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/subproject1/pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/subproject1/pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,27 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1</version> + </parent> + + <artifactId>subproject1</artifactId> + <version>2.0-SNAPSHOT</version> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/rewrite-for-release/pom-with-released-parent/subproject1/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,28 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1.0</version> + <packaging>pom</packaging> + + <modules> + <module>subproject1</module> + <module>subproject2</module> + </modules> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/subproject1/pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/subproject1/pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/subproject1/pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/subproject1/pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,26 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1.0</version> + </parent> + + <artifactId>subproject1</artifactId> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/subproject1/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/subproject2/pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/subproject2/pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/subproject2/pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/subproject2/pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,34 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1.0</version> + </parent> + + <artifactId>subproject2</artifactId> + + <dependencies> + <dependency> + <groupId>groupId</groupId> + <artifactId>subproject1</artifactId> + <version>1.0</version> + </dependency> + </dependencies> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/multiple-poms/subproject2/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/single-pom/pom.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/single-pom/pom.xml?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/single-pom/pom.xml (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/single-pom/pom.xml Sat Oct 21 07:56:52 2006 @@ -0,0 +1,22 @@ +<!-- + ~ Copyright 2005-2006 The Apache Software Foundation. + ~ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + --> + +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>groupId</groupId> + <artifactId>artifactId</artifactId> + <version>1.0</version> +</project> Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/projects/scm-commit/single-pom/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/release.properties URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/release.properties?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/release.properties (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/release.properties Sat Oct 21 07:56:52 2006 @@ -0,0 +1,42 @@ +# +# Copyright 2005-2006 The Apache Software Foundation. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +completedPhase=step1 +scm.url=scm-url +scm.username=username +scm.password=password +scm.privateKey=private-key +scm.passphrase=passphrase +scm.tagBase=tagBase +scm.tag=tag + +exec.additionalArguments=additional-arguments +exec.pomFileName=pom-file-name + +preparationGoals=preparation-goals + +project.rel.groupId\:artifactId1=2.0 +project.rel.groupId\:artifactId2=3.0 +project.dev.groupId\:artifactId1=2.1-SNAPSHOT +project.dev.groupId\:artifactId2=3.0.1-SNAPSHOT + +project.scm.groupId\:artifactId1.connection=connection +project.scm.groupId\:artifactId1.developerConnection=developerConnection +project.scm.groupId\:artifactId1.url=url +project.scm.groupId\:artifactId1.tag=tag + +project.scm.groupId\:artifactId2.connection=connection2 +project.scm.groupId\:artifactId2.url=url2 \ No newline at end of file Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/release.properties ------------------------------------------------------------------------------ svn:eol-style = native Added: maven/shared/trunk/maven-release-manager/src/test/resources/rewrite-release.properties URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-release-manager/src/test/resources/rewrite-release.properties?view=auto&rev=466407 ============================================================================== --- maven/shared/trunk/maven-release-manager/src/test/resources/rewrite-release.properties (added) +++ maven/shared/trunk/maven-release-manager/src/test/resources/rewrite-release.properties Sat Oct 21 07:56:52 2006 @@ -0,0 +1,23 @@ +# +# Copyright 2005-2006 The Apache Software Foundation. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +completedPhase=step1 +scm.url=scm-url +scm.username=username +scm.password=password +scm.privateKey=private-key +scm.passphrase=passphrase +scm.tagBase=tagBase Propchange: maven/shared/trunk/maven-release-manager/src/test/resources/rewrite-release.properties ------------------------------------------------------------------------------ svn:eol-style = native