-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (32 loc) · 976 Bytes
/
Copy pathbuild.gradle
File metadata and controls
37 lines (32 loc) · 976 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
plugins {
id 'org.spongepowered.plugin' version '0.8.1'
id 'maven'
id 'signing'
}
group = 'io.github.axle2005'
version = "$minecraftVersion-$version"
description = 'Manages Monthly Dim Resets'
archivesBaseName = project.name.toLowerCase()
repositories {
jcenter()
maven {
name = 'Forge'
url = 'http://files.minecraftforge.net/maven'
}
maven {
name = 'bstats'
url = 'http://repo.bstats.org/content/repositories/releases/'
}
}
dependencies {
compileOnly ("org.spongepowered:spongecommon:$apiVersion:dev") {
exclude module: 'testplugins'
}
compile "org.bstats:bstats-sponge:1.2"
compileOnly ("me.ryanhamshire:griefprevention:$minecraftVersion-$griefpreventionVersion")
}
apply plugin: "signing"
signing {
required { project.hasProperty("signing.keyId") && project.hasProperty("signing.password") && project.hasProperty("signing.secretKeyRingFile") }
sign configurations.archives
}