Issue #7 - Move the <repositories> definitions to the apps themselves, not the archetypes
Project: http://git-wip-us.apache.org/repos/asf/isis/repo Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/cd53c313 Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/cd53c313 Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/cd53c313 Branch: refs/heads/master Commit: cd53c31352c86834aa90c4412d06525952149199 Parents: 9278e8f Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Fri Nov 14 22:35:33 2014 +0200 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Fri Nov 14 22:35:33 2014 +0200 ---------------------------------------------------------------------- example/application/simpleapp/pom.xml | 12 ++++++++++++ example/application/todoapp/pom.xml | 12 ++++++++++++ example/archetype/simpleapp/pom.xml | 12 ------------ example/archetype/todoapp/pom.xml | 12 ------------ 4 files changed, 24 insertions(+), 24 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/isis/blob/cd53c313/example/application/simpleapp/pom.xml ---------------------------------------------------------------------- diff --git a/example/application/simpleapp/pom.xml b/example/application/simpleapp/pom.xml index 41b226e..93daa71 100644 --- a/example/application/simpleapp/pom.xml +++ b/example/application/simpleapp/pom.xml @@ -363,4 +363,16 @@ </profile> </profiles> + <repositories> + <repository> + <id>Cloudbees snapshots</id> + <url>http://repository-estatio.forge.cloudbees.com/snapshot/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </repository> + </repositories> </project> http://git-wip-us.apache.org/repos/asf/isis/blob/cd53c313/example/application/todoapp/pom.xml ---------------------------------------------------------------------- diff --git a/example/application/todoapp/pom.xml b/example/application/todoapp/pom.xml index b3aac97..e949ec3 100644 --- a/example/application/todoapp/pom.xml +++ b/example/application/todoapp/pom.xml @@ -362,4 +362,16 @@ </profile> </profiles> + <repositories> + <repository> + <id>Cloudbees snapshots</id> + <url>http://repository-estatio.forge.cloudbees.com/snapshot/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </repository> + </repositories> </project> http://git-wip-us.apache.org/repos/asf/isis/blob/cd53c313/example/archetype/simpleapp/pom.xml ---------------------------------------------------------------------- diff --git a/example/archetype/simpleapp/pom.xml b/example/archetype/simpleapp/pom.xml index 56b661a..aa28ecb 100644 --- a/example/archetype/simpleapp/pom.xml +++ b/example/archetype/simpleapp/pom.xml @@ -47,16 +47,4 @@ <version>1.8.0-SNAPSHOT</version> <relativePath>../../../core/pom.xml</relativePath> </parent> - <repositories> - <repository> - <id>Cloudbees snapshots</id> - <url>http://repository-estatio.forge.cloudbees.com/snapshot/</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - <releases> - <enabled>false</enabled> - </releases> - </repository> - </repositories> </project> http://git-wip-us.apache.org/repos/asf/isis/blob/cd53c313/example/archetype/todoapp/pom.xml ---------------------------------------------------------------------- diff --git a/example/archetype/todoapp/pom.xml b/example/archetype/todoapp/pom.xml index 780e874..a1ce46a 100644 --- a/example/archetype/todoapp/pom.xml +++ b/example/archetype/todoapp/pom.xml @@ -47,16 +47,4 @@ <version>1.8.0-SNAPSHOT</version> <relativePath>../../../core/pom.xml</relativePath> </parent> - <repositories> - <repository> - <id>Cloudbees snapshots</id> - <url>http://repository-estatio.forge.cloudbees.com/snapshot/</url> - <snapshots> - <enabled>true</enabled> - </snapshots> - <releases> - <enabled>false</enabled> - </releases> - </repository> - </repositories> </project>
