Skip to content

Commit

Permalink
3.0.8
Browse files Browse the repository at this point in the history
- updated dependencies
  • Loading branch information
Osiris-Team committed Jun 22, 2024
1 parent 0aff49d commit f86dbee
Showing 1 changed file with 60 additions and 9 deletions.
69 changes: 60 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,27 +39,22 @@
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.15.3</version>
<version>1.17.2</version>
</dependency>
<dependency>
<groupId>com.github.Osiris-Team</groupId>
<artifactId>AutoPlug-Core</artifactId>
<version>14.4</version>
<artifactId>jlib</artifactId>
<version>18.4</version>
</dependency>
<dependency>
<groupId>com.github.Osiris-Team</groupId>
<artifactId>Better-Thread</artifactId>
<version>5.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>5.0.0-alpha.2</version>
</dependency>
<dependency>
<groupId>net.lingala.zip4j</groupId>
<artifactId>zip4j</artifactId>
<version>2.9.0</version>
<version>2.11.3</version>
</dependency>

<!-- TESTS -->
Expand All @@ -71,6 +66,35 @@
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<!-- ========================================================================================================== -->
<!-- TRANSITIVE DEPENDENCIES -->
<!-- ========================================================================================================== -->

<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.9.10</version>
</dependency>
<dependency>
<groupId>com.github.Osiris-Team</groupId>
<artifactId>jansi</artifactId>
<version>2.4.5</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.17.2</version>
</dependency>
<dependency>
<groupId>org.jline</groupId>
<artifactId>jline</artifactId>
<version>3.26.1</version>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<finalName>${project.name}
</finalName> <!-- If you'd like to have version information on your output jar, remove this. -->
Expand Down Expand Up @@ -157,6 +181,33 @@
</executions>
</plugin>

<!--
Fails when the same dependency exists more than once, with different versions or if it's a SNAPSHOT.
If that is the case specify/add that dependency in <dependenciesManagement> (transitive dependency) above,
with a version that is compatible with all other dependencies, or
try to find an alternative dependency with similar functionality.
Note that having this check is crucial to avoid runtime "method not found" errors that will lead to crashes
and/or unexpected behaviour.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>enforce</id>
<configuration>
<rules>
<dependencyConvergence/>
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>

<!-- Sometimes unfiltered resources cause unexpected behaviour, thus enable filtering. -->
Expand Down

0 comments on commit f86dbee

Please sign in to comment.