-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
47 lines (41 loc) · 974 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
43
44
45
46
47
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.18.0'
}
}
plugins {
id 'java'
id 'java-library'
id 'maven-publish'
}
apply plugin: "com.vanniktech.maven.publish"
group 'io.github.TradersTeam'
version '1.0.2'
allprojects {
repositories {
google()
mavenCentral()
}
plugins.withId("com.vanniktech.maven.publish") {
mavenPublish {
sonatypeHost = "S01"
}
}
}
repositories {
mavenCentral()
}
dependencies {
//jetbrains annotations
implementation 'org.jetbrains:annotations:22.0.0'
//retrofit
def retrofit_version = '2.9.0'
api "com.squareup.retrofit2:retrofit:$retrofit_version"
api "com.squareup.retrofit2:converter-gson:$retrofit_version"
//project lombok
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
}