-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
55 lines (47 loc) · 1.23 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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.30-M1'
id 'maven-publish'
id 'org.jetbrains.dokka' version '0.10.0'
}
group 'com.github.FabianFG'
version '1.7.6'
sourceCompatibility = 1.8
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
task javadocJar(type: Jar) {
from javadoc
classifier = 'javadoc'
}
publishing {
publications {
maven(MavenPublication) {
artifactId = 'FortniteDownloader'
groupId = group
version = version
from components.java
artifact sourcesJar
artifact javadocJar
}
}
}
dependencies {
implementation 'com.github.FabianFG:Fortnite-Api:master-SNAPSHOT'
implementation 'com.github.FabianFG:JFortniteParse:master-SNAPSHOT'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
}
compileKotlin {
kotlinOptions.jvmTarget = '1.8'
}
compileTestKotlin {
kotlinOptions.jvmTarget = '1.8'
}