You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2018/03/10 13:57:19 UTC

[isis] branch master updated: ISIS-1904: flattens dependencies in simpleapp-webapp so can build using -Drevision=

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 62aa77b  ISIS-1904: flattens dependencies in simpleapp-webapp so can build using -Drevision=
62aa77b is described below

commit 62aa77bf54edfd3e3679fba460a1c2383960bb89
Author: Dan Haywood <da...@haywood-associates.co.uk>
AuthorDate: Sat Mar 10 13:57:11 2018 +0000

    ISIS-1904: flattens dependencies in simpleapp-webapp so can build using -Drevision=
---
 example/application/simpleapp/webapp/pom.xml | 34 ++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/example/application/simpleapp/webapp/pom.xml b/example/application/simpleapp/webapp/pom.xml
index 7572a6f..c46a559 100644
--- a/example/application/simpleapp/webapp/pom.xml
+++ b/example/application/simpleapp/webapp/pom.xml
@@ -159,6 +159,40 @@
 
     <profiles>
         <profile>
+            <!--
+            specifying -Drevision means that scope=pom dependencies are not resolved.
+            This is a workaround for that issue
+            -->
+            <id>revision</id>
+            <activation>
+                <property>
+                    <name>revision</name>
+                </property>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>org.apache.isis.core</groupId>
+                    <artifactId>isis-core-viewer-wicket-impl</artifactId>
+                    <version>${revision}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.isis.core</groupId>
+                    <artifactId>isis-core-viewer-restfulobjects-server</artifactId>
+                    <version>${revision}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.isis.core</groupId>
+                    <artifactId>isis-core-security-shiro</artifactId>
+                    <version>${revision}</version>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.isis.core</groupId>
+                    <artifactId>isis-core-security</artifactId>
+                    <version>${revision}</version>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
             <id>jdbc-hsqldb</id>
             <activation>
                 <property>

-- 
To stop receiving notification emails like this one, please contact
danhaywood@apache.org.