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 2021/09/29 06:25:41 UTC

[isis-app-demo] 01/23: renames groupId and artifactI

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

danhaywood pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/isis-app-demo.git

commit b05c988dec4bd9e50d63e461ec06df396348656c
Author: Dan Haywood <da...@haywood-associates.co.uk>
AuthorDate: Wed Sep 29 06:32:39 2021 +0100

    renames groupId and artifactI
---
 module-simple-tests/pom.xml |  8 ++++----
 module-simple/pom.xml       |  6 +++---
 pom.xml                     | 12 ++++++------
 webapp-tests/pom.xml        |  8 ++++----
 webapp/pom.xml              |  8 ++++----
 5 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/module-simple-tests/pom.xml b/module-simple-tests/pom.xml
index 93a3504..7b11bb5 100644
--- a/module-simple-tests/pom.xml
+++ b/module-simple-tests/pom.xml
@@ -5,12 +5,12 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <groupId>org.apache.isis.starters</groupId>
-        <artifactId>simpleapp-jpa</artifactId>
+        <groupId>org.apache.isis.tutorials</groupId>
+        <artifactId>petclinic</artifactId>
         <version>1.0.0-SNAPSHOT</version>
     </parent>
 
-    <artifactId>simpleapp-jpa-module-simple-tests</artifactId>
+    <artifactId>petclinic-module-pets-tests</artifactId>
     <name>SimpleApp (JPA) - Simple Module (tests)</name>
 
     <description>
@@ -39,7 +39,7 @@
 
         <dependency>
             <groupId>${project.groupId}</groupId>
-            <artifactId>simpleapp-jpa-module-simple</artifactId>
+            <artifactId>petclinic-module-pets</artifactId>
         </dependency>
 
         <!-- TESTS -->
diff --git a/module-simple/pom.xml b/module-simple/pom.xml
index d295539..3252d95 100644
--- a/module-simple/pom.xml
+++ b/module-simple/pom.xml
@@ -5,12 +5,12 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <groupId>org.apache.isis.starters</groupId>
-        <artifactId>simpleapp-jpa</artifactId>
+        <groupId>org.apache.isis.tutorials</groupId>
+        <artifactId>petclinic</artifactId>
         <version>1.0.0-SNAPSHOT</version>
     </parent>
 
-    <artifactId>simpleapp-jpa-module-simple</artifactId>
+    <artifactId>petclinic-module-pets</artifactId>
     <name>SimpleApp (JPA) - Simple Module</name>
 
     <build>
diff --git a/pom.xml b/pom.xml
index f35ab68..a8bb155 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,8 +10,8 @@
         <relativePath/>
     </parent>
 
-    <groupId>org.apache.isis.starters</groupId>
-    <artifactId>simpleapp-jpa</artifactId>
+    <groupId>org.apache.isis.tutorials</groupId>
+    <artifactId>petclinic</artifactId>
     <version>1.0.0-SNAPSHOT</version>
 
     <name>SimpleApp (JPA) - Parent</name>
@@ -32,24 +32,24 @@
             <!-- this project's own modules -->
             <dependency>
                 <groupId>${project.groupId}</groupId>
-                <artifactId>simpleapp-jpa-module-simple</artifactId>
+                <artifactId>petclinic-module-pets</artifactId>
                 <version>${project.version}</version>
             </dependency>
             <dependency>
                 <groupId>${project.groupId}</groupId>
-                <artifactId>simpleapp-jpa-module-simple-tests</artifactId>
+                <artifactId>petclinic-module-pets-tests</artifactId>
                 <version>${project.version}</version>
                 <scope>test</scope>
                 <type>test-jar</type>
             </dependency>
             <dependency>
                 <groupId>${project.groupId}</groupId>
-                <artifactId>simpleapp-jpa-webapp</artifactId>
+                <artifactId>petclinic-webapp</artifactId>
                 <version>${project.version}</version>
             </dependency>
             <dependency>
                 <groupId>${project.groupId}</groupId>
-                <artifactId>simpleapp-jpa-webapp-tests</artifactId>
+                <artifactId>petclinic-webapp-tests</artifactId>
                 <version>${project.version}</version>
                 <scope>test</scope>
                 <type>test-jar</type>
diff --git a/webapp-tests/pom.xml b/webapp-tests/pom.xml
index 6110fb2..f8ae122 100644
--- a/webapp-tests/pom.xml
+++ b/webapp-tests/pom.xml
@@ -3,12 +3,12 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <groupId>org.apache.isis.starters</groupId>
-        <artifactId>simpleapp-jpa</artifactId>
+        <groupId>org.apache.isis.tutorials</groupId>
+        <artifactId>petclinic</artifactId>
         <version>1.0.0-SNAPSHOT</version>
     </parent>
 
-    <artifactId>simpleapp-jpa-webapp-tests</artifactId>
+    <artifactId>petclinic-webapp-tests</artifactId>
     <name>SimpleApp (JPA) - Webapp (tests)</name>
 
     <description>
@@ -36,7 +36,7 @@
 
         <dependency>
             <groupId>${project.groupId}</groupId>
-            <artifactId>simpleapp-jpa-webapp</artifactId>
+            <artifactId>petclinic-webapp</artifactId>
             <scope>test</scope>
         </dependency>
 
diff --git a/webapp/pom.xml b/webapp/pom.xml
index edc9b65..4fb3117 100644
--- a/webapp/pom.xml
+++ b/webapp/pom.xml
@@ -3,12 +3,12 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-        <groupId>org.apache.isis.starters</groupId>
-        <artifactId>simpleapp-jpa</artifactId>
+        <groupId>org.apache.isis.tutorials</groupId>
+        <artifactId>petclinic</artifactId>
         <version>1.0.0-SNAPSHOT</version>
     </parent>
 
-    <artifactId>simpleapp-jpa-webapp</artifactId>
+    <artifactId>petclinic-webapp</artifactId>
     <name>SimpleApp (JPA) - Webapp</name>
 
     <description>
@@ -58,7 +58,7 @@
 
         <dependency>
             <groupId>${project.groupId}</groupId>
-            <artifactId>simpleapp-jpa-module-simple</artifactId>
+            <artifactId>petclinic-module-pets</artifactId>
         </dependency>
 
         <!-- isis -->