2019-04-26 00:11:44 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>SongodaUpdater</artifactId>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<version>1</version>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean install</defaultGoal>
|
|
|
|
<finalName>SongodaUpdater-${project.version}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>private</id>
|
|
|
|
<url>http://repo.songoda.com/artifactory/private/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
2019-04-26 08:44:37 +02:00
|
|
|
<version>1.14</version>
|
2019-04-26 00:11:44 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|