forked from gabrielsr/bomberman
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
69 lines (58 loc) · 1.68 KB
/
build.gradle
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
apply plugin: "java"
apply plugin: "maven"
apply plugin: 'eclipse'
apply plugin: 'jacoco'
apply plugin: 'cobertura'
apply plugin: 'com.github.kt3k.coveralls'
apply plugin: 'checkstyle'
apply plugin: 'maven-publish'
group = "ecsb"
version = 0.07
compileJava.options.encoding = 'UTF-8'
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
dependencies {
compile "net.onedaybeard.artemis:artemis-odb:0.8.1"
compile "net.mostlyoriginal.artemis-odb:contrib-core:0.7.1"
compile "net.mostlyoriginal.artemis-odb:contrib-eventbus:0.7.1"
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
testCompile 'junit:junit:4.9'
}
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'net.saliman:gradle-cobertura-plugin:2.0.0' // cobertura plugin
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'
}
}
cobertura.coverageFormats = ['html', 'xml'] // coveralls plugin depends on xml format report
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
publishing {
repositories {
maven {
credentials {
username "gabrielsr"
password "23297bf212d35f849e9bd0227b8945bd7a7288e8"
}
url "https://api.bintray.com/maven/ecsb/ecsbomberman/ecsbomberman"
}
}
}