-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (29 loc) · 817 Bytes
/
build.gradle
File metadata and controls
34 lines (29 loc) · 817 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
apply plugin: 'forge'
apply plugin: 'scala'
apply plugin: 'java'
apply plugin: 'cobertura'
apply plugin: 'coveralls'
buildscript {
repositories {
mavenCentral()
maven {
name = "Minecraft Forge"
url = "http://files.minecraftforge.net/maven"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:1.0-SNAPSHOT'
classpath 'net.saliman:gradle-cobertura-plugin:2.0.0' // coveralls plugin depends on cobertura plugin
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:0.1.6'
}
}
dependencies {
testCompile 'junit:junit:4.11'
testCompile 'org.scalatest:scalatest_2.10:2.0'
}
minecraft {
version = '1.6.4-9.11.1.964'
}
group = 'net.keplercore'
version = 1
cobertura.coverageFormats = ['html', 'xml']