mirror of
https://github.com/songoda/UltimateTimber.git
synced 2024-12-02 14:53:23 +01:00
29 lines
834 B
XML
29 lines
834 B
XML
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.songoda</groupId>
|
||
|
<artifactId>UltimateTimber</artifactId>
|
||
|
<version>2.0.4</version>
|
||
|
<relativePath>../../</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>LegacyAdapter</artifactId>
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.spigotmc</groupId>
|
||
|
<artifactId>spigot</artifactId>
|
||
|
<version>1.12.2</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>Core</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|