Skip to content

Commit aeda8f3

Browse files
Merge pull request #213 from eclipse-basyx/development
Prepares 1.3.0 release
2 parents 2585429 + 290afbb commit aeda8f3

File tree

101 files changed

+4456
-205
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+4456
-205
lines changed

.github/workflows/maven-publish-snapshot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
packages: write
3838

3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141
- name: Set up JDK 11
42-
uses: actions/setup-java@v2
42+
uses: actions/setup-java@v3
4343
with:
4444
java-version: '11'
4545
distribution: 'adopt'
@@ -58,7 +58,7 @@ jobs:
5858
GITHUB_TOKEN: ${{ github.token }}
5959

6060
- name: Delete old sdk package
61-
uses: actions/delete-package-versions@v1
61+
uses: actions/delete-package-versions@v3
6262
continue-on-error: true
6363
with:
6464
package-name: 'org.eclipse.basyx.basyx.sdk'

.github/workflows/maven-run-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,16 @@ jobs:
4949
- 27017:27017
5050

5151
steps:
52-
- uses: actions/checkout@v2
52+
- uses: actions/checkout@v3
5353
- name: Set up JDK 11
54-
uses: actions/setup-java@v2
54+
uses: actions/setup-java@v3
5555
with:
5656
java-version: '11'
5757
distribution: 'adopt'
5858
cache: maven
5959
settings-path: ${{ github.workspace }} # location for the settings.xml file
6060
- name: Setup Postgres
6161
run: psql -f ci/sql/setup_postgres.sql postgresql://postgres:admin@localhost:5432/postgres
62-
- name: Check status of Mongo
63-
run: mongo test --eval "printjson(db.getSiblingDB('TestDB'), db.getCollectionNames())"
6462
- name: Build with Maven
6563
run: |
6664
mkdir -p ~/.m2

basyx.components/basyx.components.docker/basyx.components.AASServer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
- mongodb
1414

1515
mongodb:
16-
image: mongo:latest
16+
image: mongo:5.0.10
1717
container_name: mongodb
1818
healthcheck:
1919
test: echo 'db.runCommand("ping").ok' | mongo mongodb:27017/test --quiet

basyx.components/basyx.components.docker/basyx.components.AASServer/pom.xml

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.eclipse.basyx</groupId>
99
<artifactId>basyx.components.docker</artifactId>
10-
<version>1.2.0</version>
10+
<version>1.3.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>basyx.components.AASServer</artifactId>
@@ -71,18 +71,23 @@
7171
</build>
7272

7373
<dependencies>
74+
<dependency>
75+
<groupId>ch.qos.logback</groupId>
76+
<artifactId>logback-classic</artifactId>
77+
</dependency>
78+
7479
<!-- Use MongoDB Java Drivers for db connections -->
7580
<dependency>
7681
<groupId>org.mongodb</groupId>
7782
<artifactId>mongodb-driver-sync</artifactId>
78-
<version>4.2.3</version>
83+
<version>4.8.1</version>
7984
</dependency>
8085

8186
<!-- Use Spring Data MongoDB for db data management -->
8287
<dependency>
8388
<groupId>org.springframework.data</groupId>
8489
<artifactId>spring-data-mongodb</artifactId>
85-
<version>3.2.6</version>
90+
<version>3.4.6</version>
8691
</dependency>
8792

8893
<!-- Adds additional classes of the BaSys SDK for tests -->
@@ -116,7 +121,27 @@
116121
<dependency>
117122
<groupId>org.eclipse.basyx</groupId>
118123
<artifactId>basyx.components.registry</artifactId>
119-
<version>1.2.0</version>
124+
<version>1.3.0-SNAPSHOT</version>
125+
<scope>test</scope>
126+
</dependency>
127+
<dependency>
128+
<groupId>com.tngtech.keycloakmock</groupId>
129+
<artifactId>mock</artifactId>
130+
<scope>test</scope>
131+
<version>0.12.0</version>
132+
</dependency>
133+
134+
<dependency>
135+
<groupId>org.mock-server</groupId>
136+
<artifactId>mockserver-netty</artifactId>
137+
<version>5.9.0</version>
138+
<scope>test</scope>
139+
</dependency>
140+
141+
<dependency>
142+
<groupId>org.mock-server</groupId>
143+
<artifactId>mockserver-client-java</artifactId>
144+
<version>5.9.0</version>
120145
<scope>test</scope>
121146
</dependency>
122147
</dependencies>
@@ -143,7 +168,7 @@
143168
<!-- Build the docker image -->
144169
<plugin>
145170
<groupId>io.fabric8</groupId>
146-
<artifactId>docker-maven-plugin</artifactId>
171+
<artifactId>docker-maven-plugin</artifactId>
147172
</plugin>
148173

149174
<!-- Create integration test environment -->

0 commit comments

Comments
 (0)