-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
107 lines (82 loc) · 2.42 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
plugins {
id 'com.github.hierynomus.license' version '0.15.0'
id "com.github.johnrengelman.shadow" version "5.2.0"
}
group 'com.github.jonathanxd'
version '2.6.1-SNAPSHOT'
// Setup
ext {
description = "Proxy Pattern written on top of Kores!"
}
allprojects {
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'license'
apply plugin: 'com.github.johnrengelman.shadow'
license {
header rootProject.file("LICENSE_HEADER")
}
}
defaultTasks 'licenseFormat', 'build', 'test', 'jar', 'shadowJar'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
allprojects {
dependencies {
implementation 'com.github.JonathanxD:JwIUtils:4.17.2'
implementation 'com.github.koresframework.Kores:Kores:4.0.1.base'
implementation 'com.github.koresframework.Kores-BytecodeWriter:Kores-BytecodeWriter:4.0.1.bytecode.1'
testCompile group: 'junit', name:'junit', version: '4.12'
}
test {
useJUnit()
}
}
// Tasks
allprojects {
jar {
from "$rootProject.rootDir/LICENSE"
manifest {
attributes 'Implementation-Title': baseName,
'Implementation-Version': version
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
}
allprojects{
license {
String name = project.getName()
String description = project.ext.description
ext.name = "$name"
ext.organization = 'TheRealBuggy/JonathanxD (https://github.com/JonathanxD/ & https://github.com/TheRealBuggy/)'
ext.description = "$description"
ext.url = 'https://github.com/JonathanxD/KoresProxy'
ext.year = Calendar.getInstance().get(Calendar.YEAR)
ext.email = 'jonathan.scripter@programmer.net'
exclude "**/*.info"
exclude "**/*.md"
exclude "res/**"
exclude "src/main/resources/**"
exclude "src/test/resources/**"
header rootProject.file('LICENSE_HEADER')
sourceSets = project.sourceSets
ignoreFailures false
strictCheck true
mapping {
java = 'SLASHSTAR_STYLE'
}
}
}