You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by ja...@apache.org on 2014/03/20 15:00:04 UTC

git commit: trying to fix the build order for the archetypes

Repository: marmotta
Updated Branches:
  refs/heads/develop 7689d3841 -> 05d19ce76


trying to fix the build order for the archetypes


Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo
Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/05d19ce7
Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/05d19ce7
Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/05d19ce7

Branch: refs/heads/develop
Commit: 05d19ce76e7cf4cad5495b5a1e21ff3fd30fd10d
Parents: 7689d38
Author: Jakob Frank <ja...@apache.org>
Authored: Thu Mar 20 14:59:05 2014 +0100
Committer: Jakob Frank <ja...@apache.org>
Committed: Thu Mar 20 14:59:05 2014 +0100

----------------------------------------------------------------------
 .../marmotta-archetype-module/pom.xml           | 10 +++
 .../marmotta-archetype-webapp/pom.xml           | 70 ++++++++++++++++++++
 2 files changed, 80 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/marmotta/blob/05d19ce7/build/archetypes/marmotta-archetype-module/pom.xml
----------------------------------------------------------------------
diff --git a/build/archetypes/marmotta-archetype-module/pom.xml b/build/archetypes/marmotta-archetype-module/pom.xml
index 0b9a2fd..b9f8ea7 100644
--- a/build/archetypes/marmotta-archetype-module/pom.xml
+++ b/build/archetypes/marmotta-archetype-module/pom.xml
@@ -110,4 +110,14 @@
         </plugins>
     </build>
 
+    <dependencies>
+        <!-- These dependencies are only to ensure the correct build order -->
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-core</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
 </project>

http://git-wip-us.apache.org/repos/asf/marmotta/blob/05d19ce7/build/archetypes/marmotta-archetype-webapp/pom.xml
----------------------------------------------------------------------
diff --git a/build/archetypes/marmotta-archetype-webapp/pom.xml b/build/archetypes/marmotta-archetype-webapp/pom.xml
index c4065ee..d93fd92 100644
--- a/build/archetypes/marmotta-archetype-webapp/pom.xml
+++ b/build/archetypes/marmotta-archetype-webapp/pom.xml
@@ -108,4 +108,74 @@
 
     </build>
 
+    <dependencies>
+        <!-- These dependencies are only to ensure the correct build order -->
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-core</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-sparql</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-ldpath</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-ldcache-common</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-versioning-common</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-user</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-security</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-backend-kiwi</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-ldcache-kiwi</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-reasoner-kiwi</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.marmotta</groupId>
+            <artifactId>marmotta-versioning-kiwi</artifactId>
+            <version>${marmottaVersion}</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
 </project>