Skip to content

Commit

Permalink
Fix scim2-sdk-server tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kqarryzada committed Oct 11, 2023
1 parent 0a137f8 commit 9880b8a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
<guava.version>32.1.2-jre</guava.version>
<testng.version>7.5.1</testng.version>
<assertj.version>3.24.2</assertj.version>
<maven.surefire.version>3.1.2</maven.surefire.version>
</properties>

<profiles>
Expand Down Expand Up @@ -166,7 +167,7 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>${maven.surefire.version}</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down Expand Up @@ -253,6 +254,15 @@
</property>
</properties>
</configuration>
<dependencies>
<!-- Explicitly declare the TestNG dependency to resolve an issue
where the scim2-sdk-server tests were skipped. -->
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-testng</artifactId>
<version>${maven.surefire.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
10 changes: 10 additions & 0 deletions scim2-sdk-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,16 @@
<artifactId>jersey-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
<artifactId>jersey-test-framework-provider-jetty</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.connectors</groupId>
<artifactId>jersey-apache-connector</artifactId>
Expand Down

0 comments on commit 9880b8a

Please sign in to comment.