-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (35 loc) · 1.07 KB
/
build.gradle
File metadata and controls
42 lines (35 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
plugins {
id 'java'
id 'idea'
id 'maven'
id 'org.spongepowered.plugin' version '0.6'
id 'ninja.miserable.blossom' version '1.0.1'
}
apply plugin: 'java'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
group = 'rocks.devonthe.stickychunk'
version = '0.15.1-SNAPSHOT'
description = 'StickyChunk is a chunk persistence plugin for keeping blocks and entities loaded.'
repositories {
mavenCentral()
maven {
name = 'sponge'
url = 'http://repo.spongepowered.org/maven'
}
}
dependencies {
testCompile 'junit:junit:4.12'
}
blossom {
def location = 'src/main/java/rocks/devonthe/stickychunk/StickyChunk.java'
replaceToken '@NAME@', project.name, location
replaceToken '@VERSION@', project.version, location
replaceToken '@DESCRIPTION@', project.description, location
}
dependencies {
compile ('org.mongodb:mongo-java-driver:3.4.1')
compile ("org.spongepowered:spongeforge:1.10.2-2221-5.1.0-BETA-2132:dev")
// compile ("org.spongepowered:spongeapi:5.0.0")
compile fileTree(dir: 'libs', include: '*.jar')
}