Skip to content

Commit 38af98c

Browse files
exclude-dependency-org.skyscreamer.jsonassert (#1600)
* exclude-dependency-org.skyscreamer.jsonassert Signed-off-by: Harry Middelburg <harry.middelburg@alliander.com>
1 parent ea87f8b commit 38af98c

File tree

4 files changed

+23
-3
lines changed
  • osgp
    • platform
    • protocol-adapter-iec60870/osgp-protocol-simulator-iec60870
    • protocol-adapter-iec61850/osgp-protocol-simulator-iec61850

4 files changed

+23
-3
lines changed

osgp/platform/osgp-secret-management/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,14 +155,18 @@ SPDX-License-Identifier: Apache-2.0
155155
<dependency>
156156
<groupId>org.springframework.boot</groupId>
157157
<artifactId>spring-boot-starter-test</artifactId>
158-
<version>${spring.boot.version}</version>
159-
<scope>test</scope>
160158
<exclusions>
159+
<exclusion>
160+
<groupId>org.skyscreamer</groupId>
161+
<artifactId>jsonassert</artifactId>
162+
</exclusion>
161163
<exclusion>
162164
<groupId>org.junit.vintage</groupId>
163165
<artifactId>junit-vintage-engine</artifactId>
164166
</exclusion>
165167
</exclusions>
168+
<version>${spring.boot.version}</version>
169+
<scope>test</scope>
166170
</dependency>
167171
<dependency>
168172
<groupId>org.springframework.ws</groupId>

osgp/platform/osgp-throttling-service/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,12 @@ SPDX-License-Identifier: Apache-2.0
154154
<dependency>
155155
<groupId>org.springframework.boot</groupId>
156156
<artifactId>spring-boot-starter-test</artifactId>
157+
<exclusions>
158+
<exclusion>
159+
<groupId>org.skyscreamer</groupId>
160+
<artifactId>jsonassert</artifactId>
161+
</exclusion>
162+
</exclusions>
157163
<scope>test</scope>
158164
</dependency>
159165
<dependency>

osgp/protocol-adapter-iec60870/osgp-protocol-simulator-iec60870/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,11 @@ SPDX-License-Identifier: Apache-2.0
8888
<dependency>
8989
<groupId>org.springframework.boot</groupId>
9090
<artifactId>spring-boot-starter-test</artifactId>
91-
<scope>test</scope>
9291
<exclusions>
92+
<exclusion>
93+
<groupId>org.skyscreamer</groupId>
94+
<artifactId>jsonassert</artifactId>
95+
</exclusion>
9396
<exclusion>
9497
<groupId>junit</groupId>
9598
<artifactId>junit</artifactId>
@@ -99,6 +102,7 @@ SPDX-License-Identifier: Apache-2.0
99102
<artifactId>junit-vintage-engine</artifactId>
100103
</exclusion>
101104
</exclusions>
105+
<scope>test</scope>
102106
</dependency>
103107

104108
<dependency>

osgp/protocol-adapter-iec61850/osgp-protocol-simulator-iec61850/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@ SPDX-License-Identifier: Apache-2.0
7878
<dependency>
7979
<groupId>org.springframework.boot</groupId>
8080
<artifactId>spring-boot-starter-test</artifactId>
81+
<exclusions>
82+
<exclusion>
83+
<groupId>org.skyscreamer</groupId>
84+
<artifactId>jsonassert</artifactId>
85+
</exclusion>
86+
</exclusions>
8187
<scope>test</scope>
8288
</dependency>
8389

0 commit comments

Comments
 (0)