🎨 Replace PageToadletFactory with Kotlin version
[Sone.git] / build.gradle
1 group = 'net.pterodactylus'
2 version = '0.9.8'
3
4 buildscript {
5     ext.kotlinVersion = '1.2.31'
6     repositories {
7         mavenCentral()
8     }
9     dependencies {
10         classpath group: 'info.solidsoft.gradle.pitest', name: 'gradle-pitest-plugin', version: '1.4.0'
11         classpath group: 'org.jetbrains.kotlin', name: 'kotlin-gradle-plugin', version: kotlinVersion
12         classpath group: 'org.jetbrains.kotlin', name: 'kotlin-noarg', version: kotlinVersion
13     }
14 }
15
16 repositories {
17      maven { url "http://maven.pterodactylus.net/" }
18      mavenCentral()
19 }
20
21 apply plugin: 'java'
22
23 sourceCompatibility = 1.7
24 targetCompatibility = 1.7
25
26 tasks.withType(JavaCompile) {
27         options.encoding = 'UTF-8'
28 }
29
30 apply plugin: 'kotlin'
31
32 configurations {
33     provided {
34         dependencies.all { dep ->
35             configurations.default.exclude group: dep.group, module: dep.name
36         }
37     }
38     compile.extendsFrom provided
39 }
40  
41 dependencies {
42     provided group: 'org.freenetproject', name: 'fred', version: '0.7.5.1475'
43     provided group: 'org.freenetproject', name: 'freenet-ext', version: '29'
44     provided group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.54'
45
46     compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib'
47     compile group: 'net.pterodactylus', name: 'utils', version: '0.12.4'
48     compile group: 'com.google.inject', name: 'guice', version: '4.2.2'
49     compile group: 'com.google.guava', name: 'guava', version: '27.0.1-android'
50     compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.1'
51     compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.9.1'
52     compile group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
53     compile group: 'org.jsoup', name: 'jsoup', version: '1.10.2'
54
55     testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test'
56     testCompile group: 'junit', name: 'junit', version: '4.11'
57     testCompile group: 'org.mockito', name: 'mockito-core', version: '2.10.0'
58     testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
59 }
60
61 apply from: 'version.gradle'
62
63 task fatJar(type: Jar) {
64     archiveName = project.name + '-jar-with-dependencies.jar'
65     from { (configurations.runtime - configurations.provided).collect { it.isDirectory() ? it : zipTree(it) } }
66     manifest {
67         attributes('Plugin-Main-Class': 'net.pterodactylus.sone.main.SonePlugin')
68     }
69     with jar
70 }
71
72 javadoc {
73     options {
74         quiet()
75         showFromPrivate()
76         footer('© 2010–2013 David â€˜Bombe’ Roden')
77         links('http://docs.oracle.com/javase/7/docs/api/')
78     }
79     failOnError = false
80 }
81
82 apply plugin: 'jacoco'
83
84 jacoco {
85     toolVersion = '0.7.9'
86 }
87
88 jacocoTestReport.dependsOn test
89
90 apply plugin: 'info.solidsoft.pitest'
91
92 pitest {
93     outputFormats = ['HTML', 'XML']
94     timestampedReports = false
95     timeoutFactor = 3.0
96 }
97
98 apply plugin: 'findbugs'
99
100 findbugs {
101     ignoreFailures = true
102 }
103
104 apply plugin: 'idea'
105
106 task countLinesMain(type: Exec) {
107     executable = 'cloc'
108     args = ['--by-file', '--xml', '--report-file=build/reports/cloc/main.xml', 'src/main']
109     standardOutput = new ByteArrayOutputStream()
110 }
111
112 task countLinesTest(type: Exec) {
113     executable = 'cloc'
114     args = ['--by-file', '--xml', '--report-file=build/reports/cloc/test.xml', 'src/test']
115     standardOutput = new ByteArrayOutputStream()
116 }
117
118 task countLines {
119     new File(buildDir, "reports/cloc").mkdirs()
120     dependsOn tasks.countLinesMain
121     dependsOn tasks.countLinesTest
122 }
123
124 apply plugin: 'kotlin-noarg'
125
126 noArg {
127     annotation('net.pterodactylus.sone.main.NoArg')
128 }