RediSkript/pom.xml

66 lines
2.1 KiB
XML
Raw Permalink Normal View History

2020-05-10 06:52:06 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
2020-12-14 13:47:17 +00:00
<groupId>net.limework</groupId>
2020-10-22 11:19:29 +00:00
<artifactId>RediSkript</artifactId>
2024-01-21 17:26:56 +00:00
<version>1.3.7-SNAPSHOT</version>
2021-05-16 22:10:02 +00:00
<modules>
<module>RediSkript-core</module>
<module>RediSkript-bukkit</module>
</modules>
<packaging>pom</packaging>
2020-12-14 11:13:41 +00:00
2021-05-16 23:36:42 +00:00
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>commons-pool2</id>
<url>https://mvnrepository.com/artifact/org.apache.commons/commons-pool2</url>
</repository>
</repositories>
2021-06-14 04:43:29 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
2020-05-10 06:52:06 +00:00
<dependencies>
2020-12-14 11:13:41 +00:00
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220320</version>
2020-12-14 11:13:41 +00:00
</dependency>
<dependency>
<groupId>org.cryptomator</groupId>
<artifactId>siv-mode</artifactId>
2024-01-21 17:26:56 +00:00
<version>1.5.0</version>
2020-12-14 11:13:41 +00:00
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.11.1</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
2024-01-21 17:26:56 +00:00
<version>4.4.6</version>
2020-12-14 11:13:41 +00:00
</dependency>
2020-05-10 06:52:06 +00:00
</dependencies>
</project>