From 36ab08d083017cc21c1efd38142d870e3a7b4486 Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Fri, 30 Sep 2022 14:07:21 +0200 Subject: [PATCH] [Project] maven archetypes have been renamed --- content/development/converting-existing.md | 4 ++-- content/development/main-class-app.md | 2 +- content/development/maven-archetypes.md | 6 +++--- content/development/web-app.md | 2 +- content/plc/example-set-up.md | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/content/development/converting-existing.md b/content/development/converting-existing.md index f1f0cab..cd0965e 100644 --- a/content/development/converting-existing.md +++ b/content/development/converting-existing.md @@ -14,6 +14,6 @@ Once that works, use the archetypes configuration to reconfigure your project to {{% notice warning %}} Note: Beware to select the archetype pertaining to your use case: -* For a web app use the [li.strolch.mvn.archetype.webapp](/development/web-app) -* For an application with a main method use [li.strolch.mvn.archetype.main](/development/main-class-app) +* For a web app use the [strolch.mvn.archetype.webapp](/development/web-app) +* For an application with a main method use [strolch.mvn.archetype.main](/development/main-class-app) {{% /notice %}} diff --git a/content/development/main-class-app.md b/content/development/main-class-app.md index 02d6e80..813feb8 100644 --- a/content/development/main-class-app.md +++ b/content/development/main-class-app.md @@ -16,7 +16,7 @@ following command will fail. ```shell mvn archetype:generate \ -DarchetypeGroupId=li.strolch \ - -DarchetypeArtifactId=li.strolch.mvn.archetype.main \ + -DarchetypeArtifactId=strolch.mvn.archetype.main \ -DarchetypeVersion=0.1.0-SNAPSHOT \ -DgroupId= \ -DartifactId= \ diff --git a/content/development/maven-archetypes.md b/content/development/maven-archetypes.md index 35032b6..7b3d969 100644 --- a/content/development/maven-archetypes.md +++ b/content/development/maven-archetypes.md @@ -7,10 +7,10 @@ weight: 40 Maven offers archetypes to generate new projects. Strolch offers the following archetypes, to create new projects: -* [li.strolch.mvn.archetype.main](/development/main-class-app) for Java main class applications -* [li.strolch.mvn.archetype.webapp](/development/web-app) for Java Web based applications using REST and Polymer 1.x as +* [strolch.mvn.archetype.main](/development/main-class-app) for Java main class applications +* [strolch.mvn.archetype.webapp](/development/web-app) for Java Web based applications using REST and Polymer 1.x as the frontend. -* [li.strolch.mvn.archetype.plc](/plc/example-set-up) for Strolch PLC projects. +* [strolch.mvn.archetype.plc](/plc/example-set-up) for Strolch PLC projects. To use the archetypes, clone the archetypes repository and install it locally: diff --git a/content/development/web-app.md b/content/development/web-app.md index cd744d4..91873c1 100644 --- a/content/development/web-app.md +++ b/content/development/web-app.md @@ -59,7 +59,7 @@ following command will fail. ```shell mvn archetype:generate \ -DarchetypeGroupId=li.strolch \ - -DarchetypeArtifactId=li.strolch.mvn.archetype.webapp \ + -DarchetypeArtifactId=strolch.mvn.archetype.webapp \ -DarchetypeVersion=0.1.0-SNAPSHOT \ -DgroupId= \ -DartifactId= \ diff --git a/content/plc/example-set-up.md b/content/plc/example-set-up.md index dd17c61..f3032f0 100644 --- a/content/plc/example-set-up.md +++ b/content/plc/example-set-up.md @@ -26,7 +26,7 @@ Create a new project using the PLC Strolch Maven Archetype: ```shell mvn archetype:generate \ -DarchetypeGroupId=li.strolch \ - -DarchetypeArtifactId=li.strolch.mvn.archetype.plc \ + -DarchetypeArtifactId=strolch.mvn.archetype.plc \ -DarchetypeVersion=0.1.0-SNAPSHOT \ -DgroupId= \ -DartifactId= \