-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
45 lines (31 loc) · 992 Bytes
/
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
apply from: "gradle/vertx.gradle"
task filter(type: Copy) {
from 'etc/wildfly-ra-sample.cli'
into 'build/etc'
filter(org.apache.tools.ant.filters.ReplaceTokens, tokens:[VERTXRA: "${modname}-${version}.rar".toString()])
}
build.dependsOn filter
uploadArchives.enabled = false
jar.enabled = false
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
group = "${modowner}"
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
repositories {
mavenLocal()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven {url 'http://repository.jboss.org/nexus/content/groups/public/'}
maven {url 'http://snapshots.jboss.org/maven2/' }
mavenCentral()
maven {url 'http://jesperpedersen.github.com/fungal/maven2/'}
}
test {
// Make sure tests are always run!
outputs.upToDateWhen { false }
// Show output
testLogging.showStandardStreams = true
testLogging { exceptionFormat "full" }
}
}