Tang Cheng | 8864389 | 2020-10-31 22:00:07 +0800 | [diff] [blame] | 1 | plugins { |
2 | id 'java' | ||||
3 | id 'application' | ||||
4 | } | ||||
5 | |||||
6 | |||||
7 | version = '1.0.0' | ||||
8 | |||||
9 | repositories { | ||||
10 | mavenCentral() | ||||
11 | jcenter() | ||||
12 | } | ||||
13 | |||||
14 | dependencies { | ||||
Tang Cheng | 065db89 | 2020-11-03 13:24:46 +0800 | [diff] [blame] | 15 | implementation 'commons-codec:commons-codec:1.15' |
16 | implementation 'com.eatthepath:java-otp:0.2.0' | ||||
Tang Cheng | 8864389 | 2020-10-31 22:00:07 +0800 | [diff] [blame] | 17 | } |
18 | |||||
19 | application { | ||||
20 | mainClass = 'com.supwisdom.dlsmk.DLSMK' | ||||
21 | } |