forked from BigScary/AntiXRay
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
134 lines (112 loc) · 2.57 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.12.1'
}
}
plugins {
// id 'com.github.hierynomus.license' version '0.12.1'
}
import org.apache.tools.ant.filters.*
apply plugin: 'com.github.hierynomus.license'
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
// default tasks
defaultTasks 'clean', 'license', 'check', 'build', 'install'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
group = 'me.ryanhamshire'
version = projectVersion
ext.projectName = projectName
ext.url = url
ext.description = description
ext.authors= authors
ext.author = authors.split(',\\s*')[0]
repositories {
mavenCentral()
maven {
url 'http://repo.bukkit.org/content/groups/public'
}
maven {
url 'https://hub.spigotmc.org/nexus/content/groups/public/'
}
mavenLocal()
}
dependencies {
compile 'org.bukkit:bukkit:1.13-R0.1-SNAPSHOT'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
jar {
manifest {
attributes 'Implementation-Title': project.name,
'Implementation-Version': version
// include versions of compile dependencies:
attributes configurations.compile.resolvedConfiguration.firstLevelModuleDependencies
.collectEntries{[it.moduleName, it.moduleVersion]}
}
}
// include and filter resources
processResources {
from ('NOTICE.txt')
from ('LICENSE.txt')
from(sourceSets.main.resources.srcDirs)
filter {
line ->
line
.replace('${name}', project.name)
.replace('${version}', project.version)
.replace('${author}', project.author)
.replace('${authors}', project.authors)
.replace('${url}', project.url)
.replace('${description}', project.description)
}
}
// license header
license {
ext.name = project.name
ext.author = project.author
ext.authors = project.authors
ext.url = project.url
header file('HEADER.txt')
include '**/*.java'
exclude '**/thirdparty/**'
ignoreFailures false
strictCheck true
}
// source compiler configuration
configure([compileJava, compileTestJava]) {
options.deprecation = false
options.encoding = 'utf8'
}
task sourceJar(type: Jar) {
from sourceSets.main.java
from sourceSets.main.resources
classifier = 'sources'
}
javadoc {
options.encoding = 'utf8'
failOnError = false
}
task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir
classifier = 'javadoc'
}
artifacts {
archives jar
// archives sourceJar
// archives javadocJar
}
uploadArchives {
repositories {
mavenDeployer {
mavenLocal()
}
}
}