blob: 8d5987f04e32a903657b26d448fddaea4a64c6c4 [file] [log] [blame]
Tang Cheng88643892020-10-31 22:00:07 +08001plugins {
2 id 'java'
3 id 'application'
4}
5
6
7version = '1.0.0'
8
9repositories {
10 mavenCentral()
11 jcenter()
12}
13
14dependencies {
15 implementation 'commons-codec:commons-codec:1.15'
16}
17
18application {
19 mainClass = 'com.supwisdom.dlsmk.DLSMK'
20}