-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (32 loc) · 854 Bytes
/
build.gradle
File metadata and controls
44 lines (32 loc) · 854 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
plugins {
id 'groovy'
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.codehaus.groovy:groovy-all:3.0.5'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
// jlayer - java 에서 mp3
implementation 'javazoom:jlayer:1.0.1'
// mysql driver
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.28'
}
test {
useJUnitPlatform()
}
jar {
manifest { //패키지.패키지.메인클래스이름
attributes 'Main-Class': 'DynamicMusic.Main'
}
from {
configurations.runtimeClasspath.collect {
it.isDirectory() ? it : zipTree(it)
}
}
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}