-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
111 lines (93 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
* Noah Dinan
* Direct Supply Take Home Kata
*/
plugins {
id 'java'
id 'eclipse'
id 'application'
id 'java-library'
id 'com.diffplug.spotless' version '7.0.0.BETA2'
}
ext {
projectName = 'kata'
}
eclipse {
project {
name = "$projectName"
}
classpath {
defaultOutputDir = file("${project.projectDir}/build/eclipse")
file {
whenMerged {
cp -> cp.getEntries().forEach{
cpEntry -> if(cpEntry.kind=='src') {
cpEntry.output = cpEntry.output.replace('bin/', 'build/eclipse/')
}
}
}
}
}
}
test {
useJUnitPlatform()
}
application {
mainClass = "kata.Main"
}
repositories {
mavenCentral()
gradlePluginPortal()
}
dependencies {
implementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation 'commons-httpclient:commons-httpclient:3.1'
implementation 'org.apache.poi:poi:4.0.0'
implementation 'org.apache.poi:poi-ooxml:4.0.0'
implementation 'org.json:json:20240303'
}
group = 'kata'
version = '1.0.0'
java.sourceCompatibility = "22.0.2"
run {
standardInput = System.in
}
/**
* :uberjar
*/
task uberjar(type: Jar) {
manifest {
attributes 'Main-Class': 'kata.Main'
}
archiveBaseName = "$projectName"
archiveClassifier = ""
archiveVersion = ""
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
sourceSets {
main {
java {
srcDirs = ['src']
exclude '**/test/**'
}
resources {
srcDirs = ['src/resources']
}
}
test {
java {
srcDirs = ['src']
exclude '**/kata/**'
}
}
}
spotless {
java {
indentWithSpaces(4)
formatAnnotations()
}
}