-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (43 loc) · 1.32 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
plugins {
id 'java'
id 'idea'
id 'maven-publish'
id 'com.jfrog.bintray' version '1.8.4'
id 'de.clashsoft.simple-publish' version '0.3.0'
id 'org.dyvil.dyvil-gradle' version '0.5.0-rc.1'
}
group = 'org.dyvil'
version = 'git describe --tags'.execute().text[1..-2] // strip v and \n
description = 'The Dyvil Test library'
publishInfo {
organization = 'dyvil'
websiteUrl = 'https://github.com/Dyvil/DyvilTest'
issueTrackerUrl = 'https://github.com/Dyvil/DyvilTest/issues'
vcsUrl = 'https://github.com/Dyvil/DyvilTest'
githubRepo = 'Dyvil/DyvilTest'
license {
shortName = 'BSD 3-Clause'
longName = 'BSD 3-Clause "New" or "Revised" License'
url = 'https://opensource.org/licenses/BSD-3-Clause'
}
developer {
id = 'clashsoft'
name = 'Adrian Kunz'
email = 'clashsoft@hotmail.com'
}
}
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
// https://mvnrepository.com/artifact/org.dyvil/compiler
dyvilc group: 'org.dyvil', name: 'compiler', version: '0.46.5'
// https://mvnrepository.com/artifact/org.dyvil/gensrc
gensrc group: 'org.dyvil', name: 'gensrc', version: '0.10.2'
// https://mvnrepository.com/artifact/org.dyvil/library
compile group: 'org.dyvil', name: 'library', version: '0.46.1'
// https://mvnrepository.com/artifact/junit/junit
compile group: 'junit', name: 'junit', version: '4.12'
}