-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (35 loc) · 1.13 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
buildscript {
ext.kotlin_version = "1.3.72"
ext.build_gradle_version = '3.6.3'
repositories {
maven { url 'https://maven.aliyun.com/repository/public/' } //jcenter和central
maven { url 'https://maven.aliyun.com/repository/google/' }
maven { url 'https://maven.aliyun.com/repository/gradle-plugin/' }
google()
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'org.jetbrains.kotlin.jvm' version "$kotlin_version"
}
repositories {
maven { url 'https://maven.aliyun.com/repository/public/' } //jcenter和central
maven { url 'https://maven.aliyun.com/repository/google/' }
maven { url "https://jitpack.io" }
mavenLocal()
mavenCentral()
google()
}
apply plugin: 'java-library'
apply plugin: 'kotlin'
group "tiiehenry.script.wrapper"
version "1.2.3"
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
// implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
apply from: "properties/maven-publish-kotlin.gradle"