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 2019/12/05 09:34:45 UTC

[isis-app-simpleapp] branch master updated (01fd104 -> eaa78fd)

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

danhaywood pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/isis-app-simpleapp.git.


    from 01fd104  updates after refactoring changes to master
     new a6f3c85  adds missing test dependency on guava
     new 65c26ad  removes guava dependency, now transitively available from wicket-ui
     new eaa78fd  update after ISIS-2213 ... changed package

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 webapp/src/main/java/domainapp/webapp/SimpleApp.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[isis-app-simpleapp] 02/03: removes guava dependency, now transitively available from wicket-ui

Posted by da...@apache.org.
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-app-simpleapp.git

commit 65c26adec7010c9dc98a3b9c97a97d5a4884c776
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Thu Dec 5 00:38:32 2019 +0000

    removes guava dependency, now transitively available from wicket-ui
---
 webapp/pom.xml | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/webapp/pom.xml b/webapp/pom.xml
index fc40bac..50ba7a6 100644
--- a/webapp/pom.xml
+++ b/webapp/pom.xml
@@ -130,12 +130,6 @@
             <scope>test</scope>
         </dependency>
 
-        <dependency>
-            <groupId>com.google.guava</groupId>
-            <artifactId>guava</artifactId>
-            <scope>test</scope>
-        </dependency>
-
     </dependencies>
 
     <profiles>


[isis-app-simpleapp] 03/03: update after ISIS-2213 ... changed package

Posted by da...@apache.org.
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-app-simpleapp.git

commit eaa78fd3f98741a034b4a2e5e4317655349f0543
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Thu Dec 5 09:34:28 2019 +0000

    update after ISIS-2213 ... changed package
---
 webapp/src/main/java/domainapp/webapp/SimpleApp.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webapp/src/main/java/domainapp/webapp/SimpleApp.java b/webapp/src/main/java/domainapp/webapp/SimpleApp.java
index 5df6ce5..817206a 100644
--- a/webapp/src/main/java/domainapp/webapp/SimpleApp.java
+++ b/webapp/src/main/java/domainapp/webapp/SimpleApp.java
@@ -8,7 +8,7 @@ import org.apache.isis.extensions.h2console.dom.IsisExtH2ConsoleModule;
 import org.apache.isis.persistence.jdo.datanucleus5.IsisBootDataNucleus;
 import org.apache.isis.runtime.spring.IsisBoot;
 import org.apache.isis.security.shiro.IsisBootSecurityShiro;
-import org.apache.isis.viewer.restfulobjects.server.IsisBootViewerRestfulObjects;
+import org.apache.isis.viewer.restfulobjects.viewer.IsisBootViewerRestfulObjects;
 import org.apache.isis.viewer.wicket.viewer.IsisBootViewerWicket;
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;


[isis-app-simpleapp] 01/03: adds missing test dependency on guava

Posted by da...@apache.org.
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-app-simpleapp.git

commit a6f3c8517c5955f1ec66bcba5d7df1d217d43fd7
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Thu Dec 5 00:10:52 2019 +0000

    adds missing test dependency on guava
---
 webapp/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/webapp/pom.xml b/webapp/pom.xml
index 50ba7a6..fc40bac 100644
--- a/webapp/pom.xml
+++ b/webapp/pom.xml
@@ -130,6 +130,12 @@
             <scope>test</scope>
         </dependency>
 
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+            <scope>test</scope>
+        </dependency>
+
     </dependencies>
 
     <profiles>