-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
132 lines (118 loc) · 3.91 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
// Default tasks
defaultTasks 'licenseFormatMain', 'licenseFormatTest', 'clean', 'build', 'shadowJar'
// Apply plugins
apply plugin: 'application'
apply plugin: 'java'
apply plugin: 'license'
apply plugin: 'shadow'
// Basic project information
group = 'org.spoutcraft'
archivesBaseName = 'client'
version = '1.0.0-SNAPSHOT'
mainClassName = "org.spoutcraft.client.Main"
// Extended project information
ext.projectName = 'Client'
ext.inceptionYear = '2013'
ext.currentYear = '2014'
ext.packaging = 'jar'
ext.url = 'http://spoutcraft.org'
ext.description = 'Open source, multi-threaded Minecraft client written in Java.'
ext.organization = 'Spoutcraft'
// Minimum version of Java required
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
// Define variables
ext.buildNumber = project.hasProperty("buildNumber") ? buildNumber : '0'
ext.ciSystem = project.hasProperty("ciSystem") ? ciSystem : 'unknown'
ext.commit = project.hasProperty("commit") ? commit : 'unknown'
// Configuration settings
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds' // Always check for new snapshots
}
// Plugin repositories and dependencies
buildscript {
repositories {
mavenCentral()
maven {
name = 'sonatype-nexus-public'
url = 'https://oss.sonatype.org/content/repositories/public/'
}
jcenter()
}
dependencies {
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.7.0'
classpath 'com.github.jengelman.gradle.plugins:shadow:0.8'
}
}
// Non-plugin repositories and dependencies
repositories {
mavenLocal()
mavenCentral()
maven {
name = 'sonatype-nexus-public'
url = 'https://oss.sonatype.org/content/repositories/public/'
}
}
dependencies {
compile 'com.flowpowered:flow-chat-commands:0.1.0-SNAPSHOT'
compile 'com.flowpowered:flow-commons:0.1.0-SNAPSHOT'
compile 'com.flowpowered:flow-networking:0.1.0-SNAPSHOT'
compile 'com.flowpowered:flow-noise:0.1.0-SNAPSHOT'
compile 'com.flowpowered:flow-render:0.1.0-SNAPSHOT'
compile 'com.github.wolf480pl:jline-log4j2-appender:0.0.1-SNAPSHOT'
compile 'io.netty:netty-all:4.0.14.Final'
compile 'junit:junit:4.8.2'
compile 'org.apache.logging.log4j:log4j-api:2.0-beta9'
compile 'org.apache.logging.log4j:log4j-core:2.0-beta9'
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.0-beta9'
compile 'org.spout:caustic-lwjgl:1.0.0-SNAPSHOT'
compile 'org.spout:react:1.0.0-SNAPSHOT'
testCompile 'junit:junit:4.8.2'
}
// Filter, process, and include resources
processResources {
from(rootProject.rootDir) {
include 'LICENSE.txt'
}
}
// Include dependencies in final JAR
shadow {
artifactAttached = false
include '**'
exclude 'junit/**'
}
// License header formatting
import nl.javadude.gradle.plugins.license.License
tasks.withType(License).each { licenseTask ->
licenseTask.exclude '**/*.frag'
licenseTask.exclude '**/*.ttf'
licenseTask.exclude '**/*.vert'
licenseTask.exclude '**/*.yml'
licenseTask.exclude '**/*.xml'
}
license {
ext.name = projectName
ext.organization = organization
ext.url = url
ext.year = inceptionYear + '-' + currentYear
header rootProject.file('HEADER.txt')
ignoreFailures true
strictCheck true
}
// Source compiler configuration
configure([compileJava, compileTestJava]) {
options.compilerArgs << '-Xlint:all'
options.compilerArgs << '-Xlint:-path'
options.deprecation = true
}
// JAR manifest configuration
jar {
manifest {
attributes "Main-Class": mainClassName,
"Built-By": System.properties['user.name'],
"Created-By": System.properties['java.vm.version'] + " (" + System.properties['java.vm.vendor'] + ")",
"Implementation-Title": name,
"Implementation-Version": version + "+" + ciSystem + "-b" + buildNumber + ".git-" + commit,
"Implementation-Vendor": url
}
}