-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
138 lines (118 loc) · 3.92 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
description = 'Kommon'
task wrapper(type: Wrapper) {
gradleVersion = '2.5'
}
if (rootProject != project) {
configure(rootProject) {
apply plugin: 'idea'
}
}
subprojects { sub ->
apply plugin: 'propdeps'
apply plugin: 'propdeps-maven'
apply plugin: 'propdeps-idea'
apply plugin: 'propdeps-eclipse'
apply plugin: 'kotlin'
apply plugin: 'pride'
if (sub.name == "vert.k") {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
else {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
task sourceJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
/*
task javadocJar(type: Jar) {
classifier = 'javadoc'
from kdoc.destinationDir
}
javadocJar.dependsOn kdoc
*/
build.dependsOn sourceJar // , javadocJar
//noinspection GroovyAssignabilityCheck
dependencies {
// compile "com.google.guava:guava:$version_guava"
provided "org.slf4j:slf4j-api:$version_slf4j"
testRuntime "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
testRuntime "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
testCompile "org.slf4j:slf4j-api:$version_slf4j"
testCompile "junit:junit:$version_junit"
testCompile "com.google.truth:truth:$version_truth"
testRuntime "ch.qos.logback:logback-classic:$version_logback"
testRuntime "ch.qos.logback:logback-access:$version_logback"
testRuntime "org.slf4j:jcl-over-slf4j:$version_slf4j"
testRuntime "org.slf4j:jul-to-slf4j:$version_slf4j"
testRuntime "org.slf4j:log4j-over-slf4j:$version_slf4j"
}
repositories {
mavenCentral()
jcenter()
maven {
url 'https://collokia.artifactoryonline.com/collokia/collokia-oss'
}
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
maven {url 'https://oss.sonatype.org/content/groups/staging' }
}
//noinspection GroovyAssignabilityCheck
configurations.all {
exclude group: "org.slf4j", module: "slf4j-simple"
exclude group: "commons-logging"
exclude group: "log4j"
exclude group: "com.google.code.findbugs"
exclude group: "org.slf4j", module: "slf4j-log4j12"
resolutionStrategy {
cacheDynamicVersionsFor 1, 'days' // things with wildcard version numbers
cacheChangingModulesFor 1, 'hours' // things with same version, but content of module changes, i.e. SNAPSHOT
}
}
apply plugin: 'maven-publish'
publishing {
publications {
maven(MavenPublication) {
from components.java
artifact sourceJar {
classifier "sources"
}
// artifact javadocJar {
// classifier "javadoc"
// }
}
}
repositories {
maven {
url "https://collokia.artifactoryonline.com/collokia/collokia-oss"
credentials {
username "${collokiaRepoUser}"
password "${collokiaRepoPass}"
}
}
}
}
}
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url 'https://collokia.artifactoryonline.com/collokia/collokia-oss'
}
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
maven {
url 'http://repo.spring.io/plugins-release'
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.springframework.build.gradle:propdeps-plugin:$propdepsVersion"
classpath "com.prezi.pride:gradle-pride-plugin:$prideVersion"
}
}