-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (32 loc) · 962 Bytes
/
build.gradle
File metadata and controls
40 lines (32 loc) · 962 Bytes
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
plugins {
id "com.qixalite.spongestart" version "1.6.0"
id 'io.franzbecker.gradle-lombok' version '1.10'
id "java"
id "signing"
}
sourceCompatibility = 1.8
jar.archiveName = 'BlockMonitor-' + project.getProperties().get('pluginVersion') + '.jar'
repositories {
mavenCentral()
maven {
url 'https://repo.spongepowered.org/maven/'
}
}
signing {
if (project.hasProperty('signing.keyId') && project.hasProperty('signing.password') && project.hasProperty('signing.secretKeyRingFile')) {
sign configurations.archives
/* Uncomment this if you use shadow in your build process */
// sign configurations.shadow
}
}
spongestart{
eula true
minecraft '1.11.2'
type 'stable'
}
dependencies {
compile 'org.spongepowered:spongeapi:6.0.0'
compile 'com.zaxxer:HikariCP:2.6.2'
compile 'com.relops:snowflake:1.1'
compile group: 'com.h2database', name: 'h2', version: '1.4.195'
}