Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <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>
- <groupId>com.twins</groupId>
- <artifactId>twins-core</artifactId>
- <version>1.0.0</version>
- <properties>
- <maven.compiler.source>22</maven.compiler.source>
- <maven.compiler.target>22</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <repositories>
- <repository>
- <id>jitpack.io</id>
- <url>https://jitpack.io</url>
- </repository>
- <repository>
- <id>oss.sonatype.org-snapshots</id>
- <url>https://oss.sonatype.org/content/repositories/snapshots</url>
- </repository>
- <repository>
- <id>codemc-releases</id>
- <url>https://repo.codemc.io/repository/maven-releases/</url>
- </repository>
- <repository>
- <id>nickuc-repo</id>
- <url>https://repo.nickuc.com/maven-releases/</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>org.spigotmc</groupId>
- <artifactId>spigot</artifactId>
- <version>1.8.8-R0.1-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.32</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>me.devnatan</groupId>
- <artifactId>inventory-framework-platform-bukkit</artifactId>
- <version>3.0.8</version>
- </dependency>
- <dependency>
- <groupId>com.nickuc.chat</groupId>
- <artifactId>nchat-api</artifactId>
- <version>5.6</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.github.retrooper</groupId>
- <artifactId>packetevents-spigot</artifactId>
- <version>2.4.0</version>
- <systemPath>${project.basedir}/libs/packetevents-spigot-2.4.0.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>com.minecraftsolutions</groupId>
- <artifactId>minecraftsolutions</artifactId>
- <version>1.0</version>
- <systemPath>${project.basedir}/libs/MinecraftSolutions-1.0-all.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>com.worldedit</groupId>
- <artifactId>worldedit</artifactId>
- <version>1.0</version>
- <systemPath>${project.basedir}/libs/WorldEdit.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>com.worldguard</groupId>
- <artifactId>worldguard</artifactId>
- <version>1.0</version>
- <systemPath>${project.basedir}/libs/WorldGuard.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>swornguns</groupId>
- <artifactId>swornguns</artifactId>
- <version>1.0</version>
- <systemPath>${project.basedir}/libs/SwornGuns-1.0.0.jar</systemPath>
- <scope>system</scope>
- </dependency>
- <dependency>
- <groupId>znpcs</groupId>
- <artifactId>znpcs</artifactId>
- <version>1.0</version>
- <systemPath>${project.basedir}/libs/znpcs-4.3.jar</systemPath>
- <scope>system</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- <configuration>
- <source>22</source>
- <target>22</target>
- </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>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment