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>
|
2022-03-22 09:58:41 +00:00
|
|
|
<version>1.3.5</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>
|
2021-05-16 23:36:42 +00:00
|
|
|
<version>20210307</version>
|
2020-12-14 11:13:41 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.cryptomator</groupId>
|
|
|
|
<artifactId>siv-mode</artifactId>
|
2022-03-22 09:58:41 +00:00
|
|
|
<version>1.4.4</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.6.2</version>
|
|
|
|
</dependency>
|
2020-05-10 06:52:06 +00:00
|
|
|
</dependencies>
|
2022-03-22 09:58:41 +00:00
|
|
|
</project>
|