From 4355d0fb50e9c2cbe4be8d981b03d8ac05aa825d Mon Sep 17 00:00:00 2001 From: Samuel Langlois Date: Fri, 21 Nov 2014 14:39:11 +0000 Subject: [PATCH] #186 Add integration tests against the Enterprise edition --- .../src/main/resources/archetype-resources/repo/pom.xml | 1 + .../src/main/resources/archetype-resources/share/pom.xml | 1 + .../projects/run-enterprise/archetype.properties | 6 ++++++ .../src/test/resources/projects/run-enterprise/goal.txt | 1 + .../projects/run-enterprise/archetype.properties | 8 ++++++++ .../src/test/resources/projects/run-enterprise/goal.txt | 1 + .../projects/run-enterprise/archetype.properties | 8 ++++++++ .../src/test/resources/projects/run-enterprise/goal.txt | 1 + poms/alfresco-sdk-parent/pom.xml | 2 +- 9 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 archetypes/alfresco-allinone-archetype/src/test/resources/projects/run-enterprise/archetype.properties create mode 100644 archetypes/alfresco-allinone-archetype/src/test/resources/projects/run-enterprise/goal.txt create mode 100644 archetypes/alfresco-amp-archetype/src/test/resources/projects/run-enterprise/archetype.properties create mode 100644 archetypes/alfresco-amp-archetype/src/test/resources/projects/run-enterprise/goal.txt create mode 100644 archetypes/share-amp-archetype/src/test/resources/projects/run-enterprise/archetype.properties create mode 100644 archetypes/share-amp-archetype/src/test/resources/projects/run-enterprise/goal.txt diff --git a/archetypes/alfresco-allinone-archetype/src/main/resources/archetype-resources/repo/pom.xml b/archetypes/alfresco-allinone-archetype/src/main/resources/archetype-resources/repo/pom.xml index 92560ace..eaafec1a 100644 --- a/archetypes/alfresco-allinone-archetype/src/main/resources/archetype-resources/repo/pom.xml +++ b/archetypes/alfresco-allinone-archetype/src/main/resources/archetype-resources/repo/pom.xml @@ -28,6 +28,7 @@ ${alfresco.groupId} ${alfresco.repo.artifactId} + ${alfresco.version} war diff --git a/archetypes/alfresco-allinone-archetype/src/main/resources/archetype-resources/share/pom.xml b/archetypes/alfresco-allinone-archetype/src/main/resources/archetype-resources/share/pom.xml index 498075fe..fe03221d 100644 --- a/archetypes/alfresco-allinone-archetype/src/main/resources/archetype-resources/share/pom.xml +++ b/archetypes/alfresco-allinone-archetype/src/main/resources/archetype-resources/share/pom.xml @@ -17,6 +17,7 @@ ${alfresco.groupId} ${alfresco.share.artifactId} + ${alfresco.version} war diff --git a/archetypes/alfresco-allinone-archetype/src/test/resources/projects/run-enterprise/archetype.properties b/archetypes/alfresco-allinone-archetype/src/test/resources/projects/run-enterprise/archetype.properties new file mode 100644 index 00000000..3c68568c --- /dev/null +++ b/archetypes/alfresco-allinone-archetype/src/test/resources/projects/run-enterprise/archetype.properties @@ -0,0 +1,6 @@ +package=it.pkg +version=0.1-SNAPSHOT +groupId=archetype.it +artifactId=allInOneTest +alfresco_target_groupId=org.alfresco +alfresco_target_version=5.0.0-SNAPSHOT diff --git a/archetypes/alfresco-allinone-archetype/src/test/resources/projects/run-enterprise/goal.txt b/archetypes/alfresco-allinone-archetype/src/test/resources/projects/run-enterprise/goal.txt new file mode 100644 index 00000000..707e42e0 --- /dev/null +++ b/archetypes/alfresco-allinone-archetype/src/test/resources/projects/run-enterprise/goal.txt @@ -0,0 +1 @@ +verify -Prun -Penterprise -Dmaven.tomcat.fork=true diff --git a/archetypes/alfresco-amp-archetype/src/test/resources/projects/run-enterprise/archetype.properties b/archetypes/alfresco-amp-archetype/src/test/resources/projects/run-enterprise/archetype.properties new file mode 100644 index 00000000..fa8e0359 --- /dev/null +++ b/archetypes/alfresco-amp-archetype/src/test/resources/projects/run-enterprise/archetype.properties @@ -0,0 +1,8 @@ +#Tue Oct 30 14:23:01 CET 2012 +groupId=archetype.it +artifactId=enterprise +version=0.1-SNAPSHOT +package=it.pkg +$=cat archetype.properties +alfresco_target_groupId=org.alfresco +alfresco_target_version=5.0.0-SNAPSHOT diff --git a/archetypes/alfresco-amp-archetype/src/test/resources/projects/run-enterprise/goal.txt b/archetypes/alfresco-amp-archetype/src/test/resources/projects/run-enterprise/goal.txt new file mode 100644 index 00000000..60b24860 --- /dev/null +++ b/archetypes/alfresco-amp-archetype/src/test/resources/projects/run-enterprise/goal.txt @@ -0,0 +1 @@ +verify -Pamp-to-war -Penterprise -Dmaven.tomcat.fork=true diff --git a/archetypes/share-amp-archetype/src/test/resources/projects/run-enterprise/archetype.properties b/archetypes/share-amp-archetype/src/test/resources/projects/run-enterprise/archetype.properties new file mode 100644 index 00000000..96efa39c --- /dev/null +++ b/archetypes/share-amp-archetype/src/test/resources/projects/run-enterprise/archetype.properties @@ -0,0 +1,8 @@ +#Tue Oct 30 14:23:01 CET 2012 +groupId=archetype.it +artifactId=basic +version=0.1-SNAPSHOT +$=cat archetype.properties +package=it.pkg +alfresco_target_groupId=org.alfresco +alfresco_target_version=5.0.0-SNAPSHOT diff --git a/archetypes/share-amp-archetype/src/test/resources/projects/run-enterprise/goal.txt b/archetypes/share-amp-archetype/src/test/resources/projects/run-enterprise/goal.txt new file mode 100644 index 00000000..60b24860 --- /dev/null +++ b/archetypes/share-amp-archetype/src/test/resources/projects/run-enterprise/goal.txt @@ -0,0 +1 @@ +verify -Pamp-to-war -Penterprise -Dmaven.tomcat.fork=true diff --git a/poms/alfresco-sdk-parent/pom.xml b/poms/alfresco-sdk-parent/pom.xml index 54048a83..4c93c62c 100644 --- a/poms/alfresco-sdk-parent/pom.xml +++ b/poms/alfresco-sdk-parent/pom.xml @@ -786,7 +786,7 @@ enterprise - 5.0-BF-SNAPSHOT + 5.0.0-SNAPSHOT alfresco-enterprise share-enterprise