Skip to content

Commit

Permalink
Fix dependency errors and streamline test configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Pavlov authored and Konstantin Pavlov committed Nov 9, 2024
1 parent a56ef06 commit 1671385
Showing 1 changed file with 7 additions and 20 deletions.
27 changes: 7 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<kotlin.compiler.jvmTarget>${java.version}</kotlin.compiler.jvmTarget>
<java.compiler.release>${java.version}</java.compiler.release>
<!-- Dependencies -->
<assertk.versopn>0.28.1</assertk.versopn>
<assertk.version>0.28.1</assertk.version>
<awaitility.version>4.2.2</awaitility.version>
<dotenv-kotlin.version>6.4.2</dotenv-kotlin.version>
<junit.version>5.11.3</junit.version>
Expand Down Expand Up @@ -78,8 +78,8 @@
</dependency>
<dependency>
<groupId>com.willowtreeapps.assertk</groupId>
<artifactId>assertk-coroutines-jvm</artifactId>
<version>0.28.1</version>
<artifactId>assertk-jvm</artifactId>
<version>${assertk.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -92,36 +92,20 @@
<artifactId>kotlin-stdlib</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility-kotlin</artifactId>
<version>${awaitility.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit5</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.willowtreeapps.assertk</groupId>
<artifactId>assertk-coroutines-jvm</artifactId>
<artifactId>assertk-jvm</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -212,6 +196,9 @@
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<ignoreNonCompile>true</ignoreNonCompile>
</configuration>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit 1671385

Please sign in to comment.