2021-08-26 20:18:37 +02: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>
|
|
|
|
|
2021-08-27 18:27:26 +02:00
|
|
|
<groupId>net.knarcraft</groupId>
|
2021-09-02 14:27:56 +02:00
|
|
|
<artifactId>BooksWithoutBorders</artifactId>
|
2023-06-24 12:15:22 +02:00
|
|
|
<version>1.3.4</version>
|
2021-08-26 20:18:37 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2021-08-27 18:27:26 +02:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GNU General Public License</name>
|
|
|
|
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
2021-08-26 20:18:37 +02:00
|
|
|
<name>Books Without Borders</name>
|
|
|
|
|
|
|
|
<description>A continuation of the original Books Without Borders</description>
|
|
|
|
<properties>
|
2022-11-07 01:43:38 +01:00
|
|
|
<java.version>16</java.version>
|
2021-08-26 20:18:37 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
2022-11-07 01:43:38 +01:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2021-08-26 20:18:37 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2022-11-07 01:43:38 +01:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>net.knarcraft:knarlib</artifact>
|
|
|
|
<includes>
|
|
|
|
<include>net/knarcraft/knarlib/**</include>
|
|
|
|
</includes>
|
|
|
|
</filter>
|
|
|
|
<filter>
|
|
|
|
<excludes>
|
|
|
|
<exclude>*.MF</exclude>
|
|
|
|
<exclude>*.yml</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2021-08-26 20:18:37 +02:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
2022-11-26 15:54:17 +01:00
|
|
|
<repository>
|
|
|
|
<id>knarcraft-repo</id>
|
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</repository>
|
2021-08-26 20:18:37 +02:00
|
|
|
<repository>
|
|
|
|
<id>spigotmc-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2022-11-26 15:54:17 +01:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>knarcraft-repo</id>
|
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>knarcraft-repo</id>
|
|
|
|
<url>https://git.knarcraft.net/api/packages/EpicKnarvik97/maven</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2021-08-26 20:18:37 +02:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2023-06-23 17:57:54 +02:00
|
|
|
<version>1.20.1-R0.1-SNAPSHOT</version>
|
2021-08-26 20:18:37 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-11-07 01:43:38 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.knarcraft</groupId>
|
|
|
|
<artifactId>knarlib</artifactId>
|
2023-06-24 12:09:31 +02:00
|
|
|
<version>1.1</version>
|
2022-11-07 01:43:38 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-01-17 00:46:52 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2023-06-23 17:57:54 +02:00
|
|
|
<version>24.0.1</version>
|
2022-11-04 03:37:38 +01:00
|
|
|
<scope>provided</scope>
|
2022-01-17 00:46:52 +01:00
|
|
|
</dependency>
|
2021-08-26 20:18:37 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|