forked from moquette-io/moquette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
117 lines (100 loc) · 3.09 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
allprojects {
apply plugin: 'maven'
apply plugin: 'maven-publish'
group = 'io.moquette'
version = '0.13-SNAPSHOT'
}
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.13'
classpath 'gradle.plugin.com.github.spotbugs:gradlePlugin:1.6.0'
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
}
}
subprojects {
repositories {
mavenLocal()
maven { url "https://repo.eclipse.org/content/repositories/paho-releases/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://repo.maven.apache.org/maven2" }
}
apply from: new File(rootDir, 'gradle/java.gradle')
apply from: new File(rootDir, 'gradle/test.gradle')
apply from: new File(rootDir, 'gradle/lint.gradle')
apply plugin: 'com.jfrog.bintray'
apply plugin: 'eclipse'
ext {
nettyVersion = '4.1.22.Final'
}
task packageTests(type: Jar) {
from sourceSets.test.output
from sourceSets.test.allSource
from sourceSets.test.resources
classifier = 'tests'
}
task javadocJar (type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
task sourceJar (type : Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
// summarize artifacts
artifacts {
archives jar
archives sourceJar
archives javadocJar
archives packageTests
}
dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.5'
testCompile group: 'junit', name: 'junit', version:'4.8.2'
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.7.5'
testCompile group: 'org.assertj', name: 'assertj-core', version:'2.6.0'
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.9.0'
testCompile group: 'org.awaitility', name: 'awaitility', version: '3.0.0'
}
test {
systemProperties.put "moquette.path", "build/resources/test/"
systemProperties.put "io.netty.leakDetectionLevel", "paranoid"
testLogging {
exceptionFormat 'full'
events "passed", "skipped", "failed"
}
}
// Deploy set environment variables and run ./gradlew bintrayUpload
// publication to maven repo
publishing {
publications {
bintrayPublication(MavenPublication) {
from components.java
groupId "$project.group"
artifactId "${project.name}"
version '0.13-SNAPSHOT'
}
}
}
bintray {
println "Bintray deploy with user [${System.getenv('BINTRAY_USER')}] while working on ${project.name}"
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
pkg {
repo = 'maven'//"${project.group}"
name = "${project.group}.${project.name}"
userOrg = 'andsel'
licenses = ['Apache-2.0']
vcsUrl = "https://api.bintray.com/maven/andsel/maven/${project.group}.${project.name}"
publications = ['bintrayPublication']
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.6'
}