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 00:01:33 UTC

[isis] 02/04: ISIS-2213: renames isis-runtime-spring to isis-webboot-springboot

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

commit 1b11caf754e5be21fdfe582062b80f29e666cf9e
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Wed Dec 4 23:52:04 2019 +0000

    ISIS-2213: renames isis-runtime-spring to isis-webboot-springboot
---
 core/detached-tests/pom.xml                | 2 +-
 core/persistence/jdo/datanucleus-5/pom.xml | 4 ++--
 core/pom.xml                               | 4 ++--
 core/runtime-spring/pom.xml                | 9 ++++++---
 core/testsupport/integtestsupport/pom.xml  | 2 +-
 extensions/testing/specsupport/pom.xml     | 2 +-
 legacy/testsupport/mavenplugin/pom.xml     | 2 +-
 mavendeps/webapp/pom.xml                   | 2 +-
 8 files changed, 15 insertions(+), 12 deletions(-)

diff --git a/core/detached-tests/pom.xml b/core/detached-tests/pom.xml
index eca33ff..cca451a 100644
--- a/core/detached-tests/pom.xml
+++ b/core/detached-tests/pom.xml
@@ -70,7 +70,7 @@
         
         <dependency>
 			<groupId>org.apache.isis.core</groupId>
-			<artifactId>isis-runtime-spring</artifactId>
+			<artifactId>isis-webboot-springboot</artifactId>
 			<scope>test</scope>
 		</dependency>
         
diff --git a/core/persistence/jdo/datanucleus-5/pom.xml b/core/persistence/jdo/datanucleus-5/pom.xml
index 0b0985f..3038a3a 100644
--- a/core/persistence/jdo/datanucleus-5/pom.xml
+++ b/core/persistence/jdo/datanucleus-5/pom.xml
@@ -104,7 +104,7 @@
 <!--
 		<dependency>
 			<groupId>org.apache.isis.core</groupId>
-			<artifactId>isis-runtime-spring</artifactId>
+			<artifactId>isis-webboot-springboot</artifactId>
 		</dependency>
 -->
 
@@ -126,7 +126,7 @@
         
         <dependency>
             <groupId>org.apache.isis.core</groupId>
-            <artifactId>isis-runtime-spring</artifactId>
+            <artifactId>isis-webboot-springboot</artifactId>
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
diff --git a/core/pom.xml b/core/pom.xml
index 82fa4a3..f8964de 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -772,12 +772,12 @@
 			</dependency>
 			<dependency>
 				<groupId>org.apache.isis.core</groupId>
-				<artifactId>isis-runtime-spring</artifactId>
+				<artifactId>isis-webboot-springboot</artifactId>
 				<version>2.0.0-M3-SNAPSHOT</version>
 			</dependency>
 			<dependency>
 				<groupId>org.apache.isis.core</groupId>
-				<artifactId>isis-runtime-spring</artifactId>
+				<artifactId>isis-webboot-springboot</artifactId>
 				<version>2.0.0-M3-SNAPSHOT</version>
 				<type>test-jar</type>
 				<scope>test</scope>
diff --git a/core/runtime-spring/pom.xml b/core/runtime-spring/pom.xml
index bbfe42e..c93b66f 100644
--- a/core/runtime-spring/pom.xml
+++ b/core/runtime-spring/pom.xml
@@ -26,9 +26,12 @@
         <version>2.0.0-M3-SNAPSHOT</version>
     </parent>
 
-    <artifactId>isis-runtime-spring</artifactId>
-    <name>Apache Isis Core - Runtime Spring Boot</name>
-    <description>Defines the main Spring @Configuration, which transitively depends on the rest of core. Viewers don't have dependencies on this module.</description>
+    <artifactId>isis-webboot-springboot</artifactId>
+    <name>Apache Isis Core - Web Boot using Spring Boot</name>
+    <description>
+        Defines the main Spring @Configuration, which transitively depends on the rest of core.
+        Viewers don't have dependencies on this module.
+    </description>
 
     <properties>
         <jar-plugin.automaticModuleName>org.apache.isis.runtime.spring</jar-plugin.automaticModuleName>
diff --git a/core/testsupport/integtestsupport/pom.xml b/core/testsupport/integtestsupport/pom.xml
index d995f10..2be8f26 100644
--- a/core/testsupport/integtestsupport/pom.xml
+++ b/core/testsupport/integtestsupport/pom.xml
@@ -158,7 +158,7 @@
 
 		<dependency>
 			<groupId>org.apache.isis.core</groupId>
-			<artifactId>isis-runtime-spring</artifactId>
+			<artifactId>isis-webboot-springboot</artifactId>
 		</dependency>
 	</dependencies>
 
diff --git a/extensions/testing/specsupport/pom.xml b/extensions/testing/specsupport/pom.xml
index 29485ba..62c1687 100644
--- a/extensions/testing/specsupport/pom.xml
+++ b/extensions/testing/specsupport/pom.xml
@@ -43,7 +43,7 @@
 
 		<dependency>
             <groupId>org.apache.isis.core</groupId>
-            <artifactId>isis-runtime-spring</artifactId>
+            <artifactId>isis-webboot-springboot</artifactId>
         </dependency>
         
         <!-- ISIS EXTENSIONS -->
diff --git a/legacy/testsupport/mavenplugin/pom.xml b/legacy/testsupport/mavenplugin/pom.xml
index 1f51f83..226f6bd 100644
--- a/legacy/testsupport/mavenplugin/pom.xml
+++ b/legacy/testsupport/mavenplugin/pom.xml
@@ -94,7 +94,7 @@
 
 		<dependency>
 			<groupId>org.apache.isis.core</groupId>
-			<artifactId>isis-runtime-spring</artifactId>
+			<artifactId>isis-webboot-springboot</artifactId>
 		</dependency>
 
 
diff --git a/mavendeps/webapp/pom.xml b/mavendeps/webapp/pom.xml
index 52b2fe5..a894f81 100644
--- a/mavendeps/webapp/pom.xml
+++ b/mavendeps/webapp/pom.xml
@@ -133,7 +133,7 @@
 
 		<dependency>
 			<groupId>org.apache.isis.core</groupId>
-			<artifactId>isis-runtime-spring</artifactId>
+			<artifactId>isis-webboot-springboot</artifactId>
 		</dependency>
 
 	</dependencies>