forked from SwiftJava/swift-android-gradle
-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
42 lines (36 loc) · 900 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
buildscript {
repositories {
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'io.github.gradle-nexus:publish-plugin:1.1.0'
}
}
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'io.github.gradle-nexus.publish-plugin'
apply from: "${rootDir}/publish-root.gradle"
repositories {
jcenter()
google()
}
dependencies {
implementation gradleApi()
implementation localGroovy()
implementation "commons-configuration:commons-configuration:1.10"
compileOnly 'com.android.tools.build:gradle:4.1.0'
}
java {
withSourcesJar()
withJavadocJar()
}
ext {
// Provide your own coordinates here
PUBLISH_GROUP_ID = 'com.readdle.android.swift'
PUBLISH_ARTIFACT_ID = 'gradle'
PUBLISH_VERSION = '1.4.5'
}
apply from: "${rootProject.projectDir}/publish-module.gradle"