Skip to content

Commit da1edfc

Browse files
Prepares milestone-02 release (#237)
1 parent 67a2fcc commit da1edfc

File tree

21 files changed

+111
-9
lines changed
  • basyx.aasenvironment/basyx.aasenvironment-feature-authorization
  • basyx.aasregistry
  • basyx.aasrepository
    • basyx.aasrepository-backend
    • basyx.aasrepository-feature-authorization
    • basyx.aasrepository-feature-registry-integration
  • basyx.common
  • basyx.conceptdescriptionrepository
    • basyx.conceptdescriptionrepository-backend
    • basyx.conceptdescriptionrepository-feature-authorization
  • basyx.submodelregistry
  • basyx.submodelrepository
    • basyx.submodelrepository-backend
    • basyx.submodelrepository-feature-authorization
    • basyx.submodelrepository-feature-operation-delegation
    • basyx.submodelrepository-feature-registry-integration

21 files changed

+111
-9
lines changed

basyx.aasenvironment/basyx.aasenvironment-feature-authorization/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
<version>${revision}</version>
1010
</parent>
1111

12+
<name>BaSyx AAS Environment feature-authorization</name>
13+
<description>BaSyx AAS Environment feature-authorization</description>
14+
1215
<artifactId>basyx.aasenvironment-feature-authorization</artifactId>
1316

1417
<dependencies>

basyx.aasregistry/basyx.aasregistry-service-basemodel/javadoc/Readme.md

Whitespace-only changes.

basyx.aasregistry/basyx.aasregistry-service-basemodel/pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,23 @@
101101
<skip>true</skip>
102102
</configuration>
103103
</plugin>
104+
<plugin>
105+
<groupId>org.apache.maven.plugins</groupId>
106+
<artifactId>maven-jar-plugin</artifactId>
107+
<executions>
108+
<execution>
109+
<id>empty-javadoc-jar</id>
110+
<phase>package</phase>
111+
<goals>
112+
<goal>jar</goal>
113+
</goals>
114+
<configuration>
115+
<classifier>javadoc</classifier>
116+
<classesDirectory>${basedir}/javadoc</classesDirectory>
117+
</configuration>
118+
</execution>
119+
</executions>
120+
</plugin>
104121
</plugins>
105122
</build>
106123
<dependencies>

basyx.aasregistry/basyx.aasregistry-service-mongodb-storage/javadoc/Readme.md

Whitespace-only changes.

basyx.aasregistry/basyx.aasregistry-service-mongodb-storage/pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,23 @@
125125
<skip>true</skip>
126126
</configuration>
127127
</plugin>
128+
<plugin>
129+
<groupId>org.apache.maven.plugins</groupId>
130+
<artifactId>maven-jar-plugin</artifactId>
131+
<executions>
132+
<execution>
133+
<id>empty-javadoc-jar</id>
134+
<phase>package</phase>
135+
<goals>
136+
<goal>jar</goal>
137+
</goals>
138+
<configuration>
139+
<classifier>javadoc</classifier>
140+
<classesDirectory>${basedir}/javadoc</classesDirectory>
141+
</configuration>
142+
</execution>
143+
</executions>
144+
</plugin>
128145
</plugins>
129146
</build>
130147

basyx.aasrepository/basyx.aasrepository-backend/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
<artifactId>basyx.aasrepository</artifactId>
99
<version>${revision}</version>
1010
</parent>
11+
12+
<name>BaSyx AAS Repository backend</name>
13+
<description>BaSyx AAS Repository backend</description>
1114

1215
<artifactId>basyx.aasrepository-backend</artifactId>
1316

basyx.aasrepository/basyx.aasrepository-feature-authorization/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
</parent>
1111

1212
<artifactId>basyx.aasrepository-feature-authorization</artifactId>
13+
<name>BaSyx AAS Repository feature-authorization</name>
14+
<description>BaSyx AAS Repository feature-authorization</description>
1315

1416
<dependencies>
1517
<dependency>

basyx.aasrepository/basyx.aasrepository-feature-registry-integration/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
</parent>
1111

1212
<artifactId>basyx.aasrepository-feature-registry-integration</artifactId>
13+
<name>BaSyx AAS Repository feature-registry-integration</name>
14+
<description>BaSyx AAS Repository feature-registry-integration</description>
1315

1416
<dependencies>
1517
<dependency>

basyx.common/basyx.authorization/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
</parent>
1212

1313
<artifactId>basyx.authorization</artifactId>
14+
15+
<name>BaSyx Authorization Base</name>
16+
<description>BaSyx Authorization Base</description>
1417

1518
<dependencies>
1619
<dependency>

basyx.common/basyx.client/pom.xml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>org.eclipse.digitaltwin.basyx</groupId>
5-
<artifactId>basyx.common</artifactId>
6-
<version>${revision}</version>
7-
</parent>
8-
<artifactId>basyx.client</artifactId>
9-
<dependencies>
10-
<dependency>
4+
<groupId>org.eclipse.digitaltwin.basyx</groupId>
5+
<artifactId>basyx.common</artifactId>
6+
<version>${revision}</version>
7+
</parent>
8+
<artifactId>basyx.client</artifactId>
9+
10+
<name>BaSyx Client Base</name>
11+
<description>BaSyx Client Base</description>
12+
13+
<dependencies>
14+
<dependency>
1115
<groupId>org.eclipse.digitaltwin.basyx</groupId>
1216
<artifactId>basyx.http</artifactId>
1317
</dependency>

0 commit comments

Comments
 (0)