forked from JetBrains/rd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
230 lines (180 loc) · 6.82 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
//group 'com.jetbrains.rd'
buildscript {
apply from: 'versions.gradle'
repositories {
mavenLocal()
maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
mavenCentral()
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.50-eap-62"
classpath "com.moowork.gradle:gradle-node-plugin:1.1.1"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${dokka_version}"
}
}
allprojects {
ext.configurePublishing = {
publishing {
publications {
String mvnId = project.name
if (mvnId.endsWith('-jvm'))
mvnId = mvnId.substring(0, mvnId.length() - 4)
else if (!mvnId.endsWith("-js") && !mvnId.endsWith("-gen") && !mvnId.endsWith("-text"))
mvnId = mvnId + "-common"
maven(MavenPublication) {
groupId 'com.jetbrains.rd'
artifactId mvnId
version System.getenv("RELEASE_VERSION_NUMBER") ?: '2018.1-SNAPSHOT'
from components.java
artifact sourceJar
// artifact packageJavadoc
}
}
repositories {
maven {
url "https://www.myget.org/F/rd-snapshots/maven/"
credentials {
username = System.getenv("MYGET_USERNAME")
password = System.getenv("MYGET_PASSWORD")
}
}
}
}
}
ext.applyKotlinJS = {
apply plugin: 'kotlin-platform-js'
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-test-js:$kotlin_version"
}
def target = "${projectDir}/build/classes/main"
def projectName = name
compileKotlin2Js {
kotlinOptions.metaInfo = true
kotlinOptions.outputFile = "$target/${projectName}.js"
kotlinOptions.sourceMap = true
kotlinOptions.moduleKind = 'commonjs'
kotlinOptions.main = 'call'
kotlinOptions.typedArrays = true
}
compileTestKotlin2Js {
kotlinOptions.metaInfo = true
kotlinOptions.outputFile = "$target/${projectName}.test.js"
kotlinOptions.sourceMap = true
kotlinOptions.moduleKind = 'commonjs'
kotlinOptions.main = 'call'
kotlinOptions.typedArrays = true
}
kotlin { experimental.coroutines = 'enable' }
}
ext.applyKotlinCommon = {
apply plugin: 'kotlin-platform-common'
apply plugin: 'maven-publish'
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version"
}
kotlin { experimental.coroutines = 'enable' }
task sourceJar(type: Jar) {
from sourceSets.main.kotlin
classifier = "sources"
}
configurePublishing()
}
ext.applyKotlinJVM = {
apply plugin: 'java'
apply plugin: 'kotlin-platform-jvm'
apply plugin: "jacoco"
apply plugin: 'maven-publish'
apply plugin: 'org.jetbrains.dokka'
task sourceJar(type: Jar) {
from sourceSets.main.kotlin
if (project.parent.name != "rd")
from project.parent.sourceSets.main.kotlin
classifier = "sources"
}
dokka {
outputFormat = 'html'
outputDirectory = "$buildDir/javadoc"
}
task packageJavadoc(type: Jar){
dependsOn dokka
from "$buildDir/javadoc"
classifier = 'javadoc'
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
configurePublishing()
test {
maxHeapSize = "512m"
finalizedBy jacocoTestReport
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
testCompile "junit:junit:4.12"
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-test-testng:$kotlin_version"
testCompile "org.testng:testng:6.14.2"
// testCompile group: 'junit', name: 'junit', version: junit_version
}
kotlin { experimental.coroutines = 'enable' }
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
ext.configureNodePlugin = {
apply plugin: 'com.moowork.node'
node {
// Version of node to use.
version = '8.7.0'
// Version of npm to use.
//npmVersion = '3.10.8'
// Version of yarn to use.
yarnVersion = '1.2.1'
// Base URL for fetching node distributions (change if you have a mirror).
distBaseUrl = 'https://nodejs.org/dist'
// If true, it will download node using above parameters.
// If false, it will try to use globally installed node.
download = true
// Set the work directory for unpacking node
workDir = file("${rootProject.buildDir}/nodejs")
// Set the work directory where node_modules should be located
nodeModulesDir = file("${rootProject.projectDir}")
}
}
configurations.all {
resolutionStrategy {
force "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-runtime:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version"
}
}
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
maven { url "http://dl.bintray.com/kotlinx/kotlinx" }
maven { url "https://jitpack.io" }
maven { url "http://packages.confluent.io/maven/" }
}
}