-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (34 loc) · 1016 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
plugins {
id 'java'
id 'application'
id 'maven-publish'
}
group 'com.chalie.rcrypto'
version '1.0-beta'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation group: 'org.sql2o', name: 'sql2o', version: '1.5.4'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.2.2'
implementation 'com.sparkjava:spark-core:2.9.3'
implementation 'org.slf4j:slf4j-simple:1.7.35'
implementation 'com.google.code.gson:gson:2.8.9'
}
test {
useJUnitPlatform()
}
publishing {
publications {
maven(MavenPublication) {
group 'com.chalie.rcrypto'
version '1.0-beta'
from components.java
}
}
}