diff --git a/.github/workflows/maven-deploy-to-java-model.yml b/.github/workflows/maven-deploy-to-java-model.yml
index 0ded417..0e52131 100644
--- a/.github/workflows/maven-deploy-to-java-model.yml
+++ b/.github/workflows/maven-deploy-to-java-model.yml
@@ -43,9 +43,9 @@ jobs:
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
- source_file: 'aas/src/main/java/io/adminshell/aas/v3/model'
+ source_file: 'aas/src/main/java/org/eclipse/digitaltwin/aas4j/v3/model'
destination_repo: 'admin-shell-io/java-model'
- destination_folder: 'src/main/java/io/adminshell/aas/v3/'
+ destination_folder: 'src/main/java/org/eclipse/digitaltwin/aas4j/v3/'
user_email: 'sebastian.r.bader@web.de'
user_name: 'Sebastian Bader'
commit_message: 'This is an automated commit that was triggered by a change in the main branch of https://github.com/admin-shell-io/java-generator/'
diff --git a/.gitignore b/.gitignore
index 4a9e40f..5e61275 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,7 @@
*.log
*/target/
**/.flattened-pom.xml
+**/*.DS_Store
.idea/
diff --git a/aas/pom.xml b/aas/pom.xml
index a70e1a3..3c787ba 100644
--- a/aas/pom.xml
+++ b/aas/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
common
- io.admin-shell.aas
+ org.eclipse.aas4j
${revision}
4.0.0
@@ -13,13 +13,13 @@
Asset Administration Shell
- https://admin-shell.io/aas/3/0/RC01/
+ https://admin-shell.io/aas/3/1/
aas
- io.admin-shell.aas
+ org.eclipse.aas4j
util
${revision}
@@ -35,7 +35,7 @@
${jackson.version}
- io.admin-shell.aas
+ org.eclipse.aas4j
generator
${revision}
true
@@ -152,7 +152,7 @@
- ${basedir}/src/main/java/io/adminshell
+ ${basedir}/src/main/java/org/eclipse
**/*.java
@@ -262,9 +262,9 @@
initialize
-
-
-
+
+
+
diff --git a/aas/src/templates/basic-imports.rq b/aas/src/templates/basic-imports.rq
index 2f05153..aba122e 100644
--- a/aas/src/templates/basic-imports.rq
+++ b/aas/src/templates/basic-imports.rq
@@ -20,12 +20,12 @@ prefix rdfs:
template idstt:basic-imports {
#"\nimport de.fraunhofer.iais.eis.util.*;"
- "\nimport io.adminshell.aas.v3.model.*;"
- "\nimport io.adminshell.aas.v3.model.impl.*;"
- #"\nimport io.adminshell.aas.v3.dataformat.json.mixins.*;"
- "\nimport io.adminshell.aas.v3.model.builder.*;"
- "\nimport io.adminshell.aas.v3.model.annotations.IRI;"
- "\nimport io.adminshell.aas.v3.model.annotations.KnownSubtypes;"
+ "\nimport org.eclipse.digitaltwin.aas4j.v3.model.*;"
+ "\nimport org.eclipse.digitaltwin.aas4j.v3.model.impl.*;"
+ #"\nimport org.eclipse.digitaltwin.aas4j.v3.dataformat.json.mixins.*;"
+ "\nimport org.eclipse.digitaltwin.aas4j.v3.model.builder.*;"
+ "\nimport org.eclipse.digitaltwin.aas4j.v3.model.annotations.IRI;"
+ "\nimport org.eclipse.digitaltwin.aas4j.v3.model.annotations.KnownSubtypes;"
#"\nimport de.fraunhofer.iais.eis.*;"
"\n"
"\nimport javax.xml.datatype.XMLGregorianCalendar;"
diff --git a/aas/src/templates/get-package.rq b/aas/src/templates/get-package.rq
index 94b0e20..d6b642f 100644
--- a/aas/src/templates/get-package.rq
+++ b/aas/src/templates/get-package.rq
@@ -18,14 +18,14 @@ prefix idstt:
template idstt:get-package (?type) {
"package "
- if(str(?type) = 'interface', "io.adminshell.aas.v3.model",
- if(str(?type) = 'bean', "io.adminshell.aas.v3.model.impl",
- if(str(?type) = 'mixin', "io.adminshell.aas.v3.dataformat.json.mixins",
- if(str(?type) = 'builder', "io.adminshell.aas.v3.model.builder",
- if(str(?type) = 'serialization', "io.adminshell.aas.v3.dataformat",
- if(str(?type) = 'enum', "io.adminshell.aas.v3.model",
- if(str(?type) = 'annotations', "io.adminshell.aas.v3.model.annotations",
- "io.adminshell.aas.v3.model" #default
+ if(str(?type) = 'interface', "org.eclipse.digitaltwin.aas4j.v3.model",
+ if(str(?type) = 'bean', "org.eclipse.digitaltwin.aas4j.v3.model.impl",
+ if(str(?type) = 'mixin', "org.eclipse.digitaltwin.aas4j.v3.dataformat.json.mixins",
+ if(str(?type) = 'builder', "org.eclipse.digitaltwin.aas4j.v3.model.builder",
+ if(str(?type) = 'serialization', "org.eclipse.digitaltwin.aas4j.v3.dataformat",
+ if(str(?type) = 'enum', "org.eclipse.digitaltwin.aas4j.v3.model",
+ if(str(?type) = 'annotations', "org.eclipse.digitaltwin.aas4j.v3.model.annotations",
+ "org.eclipse.digitaltwin.aas4j.v3.model" #default
)))))))
";\n"
diff --git a/generator/pom.xml b/generator/pom.xml
index 85651b9..d23678f 100644
--- a/generator/pom.xml
+++ b/generator/pom.xml
@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
common
- io.admin-shell.aas
+ org.eclipse.aas4j
${revision}
4.0.0
@@ -21,7 +21,7 @@
fr.inria.wimmics
kgtool
- 3.2.1
+ 3.2.0
jws
@@ -38,8 +38,8 @@
maven-compiler-plugin
3.11.0
- 1.8
- 1.8
+ 7
+ 7
diff --git a/pom.xml b/pom.xml
index b870754..d30fa2a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,43 +15,43 @@
https://github.com/eclipse-digitaltwin/aas4j-model-generator
2021
- Fraunhofer Institute for Intelligent Analysis and Information Systems IAIS
- https://www.iais.fraunhofer.de/
+ Fraunhofer Institute for Intelligent Analysis and Information Systems IAIS
+ https://www.iais.fraunhofer.de/
-
- Apache License, Version 2.0
- https://www.apache.org/licenses/LICENSE-2.0.txt
- repo
-
+
+ Apache License, Version 2.0
+ https://www.apache.org/licenses/LICENSE-2.0.txt
+ repo
+
-
-
- Sebastian Bader
- s.bader@sap.com
- SAP SE
- https://www.sap.com/
-
- lead
- developer
-
-
-
- Matthias Böckmann
- matthias.boeckmann@iais.fraunhofer.de
- Fraunhofer Institute for Intelligent Analysis and Information Systems IAIS
- https://www.iais.fraunhofer.de/
-
- developer
-
-
-
-
-
- Github
- https://github.com/eclipse-digitaltwin/aas4j-model-generator/issues
-
+
+
+ Sebastian Bader
+ s.bader@sap.com
+ SAP SE
+ https://www.sap.com/
+
+ lead
+ developer
+
+
+
+ Matthias Böckmann
+ matthias.boeckmann@iais.fraunhofer.de
+ Fraunhofer Institute for Intelligent Analysis and Information Systems IAIS
+ https://www.iais.fraunhofer.de/
+
+ developer
+
+
+
+
+
+ Github
+ https://github.com/eclipse-digitaltwin/aas4j-model-generator/issues
+
util
@@ -59,21 +59,21 @@
aas
-
+
1.2.0
2.11.2
- contact@ids.fraunhofer.de
+ contact@ids.fraunhofer.de
-
- 11
- ${java.version}
- 3.3.9
+
+ 11
+ ${java.version}
+ 3.3.9
0xDFCC34A6
4.2
3.1.0
-
+
@@ -146,26 +146,26 @@
-
+
@@ -176,8 +176,8 @@
maven-javadoc-plugin
3.5.0
- 8
- false
+ 8
+ false
diff --git a/util/pom.xml b/util/pom.xml
index 7b515cb..2d25b12 100644
--- a/util/pom.xml
+++ b/util/pom.xml
@@ -3,7 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- io.admin-shell.aas
+ org.eclipse.aas4j
common
${revision}