-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
101 lines (84 loc) · 1.87 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
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'
}
}
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.7'
targetCompatibility = '1.7'
group = 'de.blablubbabc'
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.9.4-R0.1-SNAPSHOT'
}
// include and filter resources
processResources {
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 true
strictCheck true
}
// source compiler configuration
configure([compileJava, compileTestJava]) {
//options.compilerArgs += [ '-Xlint:all', '-Xlint:-path' ]
options.deprecation = false
options.encoding = 'utf8'
}
artifacts {
archives jar
}
uploadArchives {
repositories {
mavenDeployer {
mavenLocal()
}
}
}