Switch to gradle build
This commit is contained in:
parent
3807de6238
commit
ef3a8c356c
17 changed files with 770 additions and 681 deletions
1
helper/.gitignore
vendored
1
helper/.gitignore
vendored
|
|
@ -1 +1,2 @@
|
|||
/target/
|
||||
/build/
|
||||
|
|
|
|||
9
helper/build.gradle
Normal file
9
helper/build.gradle
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
description = 'dynmap-helper'
|
||||
|
||||
dependencies {
|
||||
compile group: 'us.dynmap', name: 'dynmap-api', version: "${project.version}"
|
||||
compile group: 'us.dynmap', name: 'DynmapCore', version: "${project.version}"
|
||||
compile group: 'org.bukkit', name: 'bukkit', version:'1.7.10-R0.1-SNAPSHOT'
|
||||
compile group: 'com.google.code.gson', name: 'gson', version:'2.8.2'
|
||||
}
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
<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>
|
||||
<parent>
|
||||
<groupId>us.dynmap</groupId>
|
||||
<artifactId>dynmap-common</artifactId>
|
||||
<version>3.0-SNAPSHOT</version>
|
||||
<relativePath>..</relativePath>
|
||||
</parent>
|
||||
<artifactId>dynmap-helper</artifactId>
|
||||
<groupId>us.dynmap</groupId>
|
||||
<version>3.0-SNAPSHOT</version>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>bukkit</artifactId>
|
||||
<version>1.7.10-R0.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>us.dynmap</groupId>
|
||||
<artifactId>dynmap-api</artifactId>
|
||||
<version>3.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>us.dynmap</groupId>
|
||||
<artifactId>DynmapCore</artifactId>
|
||||
<version>3.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>dynmap-repo</id>
|
||||
<url>http://repo.mikeprimm.com/</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>spigot-repo</id>
|
||||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<name>dynmap-helper</name>
|
||||
</project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue