-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (42 loc) · 998 Bytes
/
build.gradle
File metadata and controls
53 lines (42 loc) · 998 Bytes
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
plugins {
id 'java'
id "io.freefair.lombok" version "6.2.0"
id 'maven-publish'
}
group 'org.masil.domain.core'
version '0.1.1-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.code.gson:gson:2.8.8'
testImplementation(platform('org.junit:junit-bom:5.7.1'))
testImplementation('org.junit.jupiter:junit-jupiter')
testImplementation 'org.assertj:assertj-core:3.20.2'
testImplementation 'org.mockito:mockito-junit-jupiter:3.9.0'
implementation 'com.github.LenKIM.identifier:identifier-generator:0.0.36'
}
test {
useJUnitPlatform()
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
test {
useJUnitPlatform()
}
java {
withSourcesJar()
withJavadocJar()
}
publishing {
publications {
maven(MavenPublication) {
groupId project.group
artifactId project.name
version project.version
from components.java
}
}
}