🎨 Use StandardCharsets instead of Charset.forName
[rhynodge.git] / build.gradle
1 apply plugin: "java"
2 apply plugin: "kotlin"
3 apply plugin: "war"
4 apply plugin: "jacoco"
5 apply plugin: "idea"
6
7 idea {
8         project {
9                 languageLevel = "1.8"
10         }
11 }
12
13 group = "net.pterodactylus"
14 version = "0.1"
15
16 sourceCompatibility = 1.8
17 targetCompatibility = 1.8
18
19 buildscript {
20     ext.kotlinVersion = '1.2.51'
21
22     repositories {
23         mavenCentral()
24     }
25     dependencies {
26         classpath group: "org.ajoberstar", name: "gradle-git", version: "1.1.0"
27         classpath group: "org.jetbrains.kotlin", name: "kotlin-gradle-plugin", version: "$kotlinVersion"
28     }
29 }
30
31 repositories {
32     mavenCentral()
33     jcenter()
34 }
35
36 dependencies {
37     compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib", version: "$kotlinVersion"
38     compile group: "com.google.guava", name: "guava", version: "14.0-rc1"
39     compile group: "log4j", name: "log4j", version: "1.2.17"
40     compile group: "org.apache.httpcomponents", name: "httpclient", version: "4.4"
41     compile group: "org.jsoup", name: "jsoup", version: "1.7.1"
42     compile group: "javax.mail", name: "mail", version: "1.4.6-rc1"
43     compile group: "org.apache.commons", name: "commons-lang3", version: "3.1"
44     compile group: "com.fasterxml.jackson.core", name: "jackson-core", version: "2.1.2"
45     compile group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "2.1.2"
46     compile group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.1.2"
47     compile group: "com.google.inject", name: "guice", version: "4.0"
48     compile group: "org.jetbrains.kotlinx", name: "kotlinx-html-jvm", version: "0.7.1"
49
50     testCompile group: "junit", name: "junit", version:"4.12"
51     testCompile group: "org.hamcrest", name: "hamcrest-library", version:"1.3"
52     testCompile group: "org.mockito", name: "mockito-core", version:"1.9.5"
53 }
54
55 task fatJar(type: Jar) {
56         baseName = project.name + "-all"
57         manifest {
58                 attributes(
59                         "Main-Class": "net.pterodactylus.rhynodge.engine.Starter"
60                 )
61         }
62         from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
63         from { sourceSets.generated.resources.srcDirs }
64         with jar
65         dependsOn test
66 }
67
68 task createVersion() {
69     sourceSets {
70         generated {
71             resources {
72                 srcDir "src/generated/resources"
73             }
74         }
75     }
76     processResources.dependsOn(createVersion)
77 }
78
79
80 import org.ajoberstar.grgit.Grgit
81 createVersion {
82     doLast {
83         def gitRepo = Grgit.open(".")
84         version = gitRepo.describe()
85         new File("src/generated/resources").mkdirs()
86         new File("src/generated/resources/version.txt").withWriter() { it.write(version) }
87     }
88 }
89
90 war {
91     classpath sourceSets.generated.output
92     dependsOn(test)
93 }
94
95 jacoco {
96     toolVersion = "0.7.6.201602180812"
97 }
98
99 /* vim: set ts=4 sw=4 et: */