-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (42 loc) · 1.05 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
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'org.jetbrains.kotlin.kapt'
}
android {
namespace 'org.eclipse.jgit'
compileSdk 35
buildFeatures {
buildConfig true
}
defaultConfig {
minSdk 26
targetSdk 35
}
buildTypes {
release {
minifyEnabled false
proguardFiles 'proguard-rules.pro'
consumerProguardFiles 'consumer-rules.pro'
}
debug {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_18
targetCompatibility JavaVersion.VERSION_18
}
kotlinOptions {
jvmTarget = '18'
}
}
dependencies {
//noinspection UseTomlInstead
implementation 'org.slf4j:slf4j-simple:2.0.16'
//noinspection UseTomlInstead
implementation 'commons-codec:commons-codec:1.17.1'
//noinspection UseTomlInstead
implementation 'com.googlecode.javaewah:JavaEWAH:1.2.3'
//noinspection UseTomlInstead
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
}