-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
30 lines (24 loc) · 976 Bytes
/
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
/*
* Copyright (c) Waoss
*
* Mail me at [email protected] for any queries :)
*
* This is free software licensed under the GNU General Public License.This license allows one to modify it on their will and also embed it or distribute it along with their own software.
*
* It is distributed in the hope that it shall be useful to whomsoever receives it,but does not provide ANY warranty or liability,not even the gurantee that the software will work in your certain usage.
* You receive a copy of the GNU General Public License version 3.0 when you download this software.See LICENSE.MD for more details.
*/
group 'com.waoss'
version '1.2'
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'maven'
mainClassName = 'com.waoss.util.fids.FIDS'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group:'com.waoss', name:'util.fids',version:'1.1'
}