This repository was archived by the owner on May 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
132 lines (110 loc) · 2.88 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
buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
name = 'CodeChicken'
url = 'http://chickenbones.net/maven/'
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
classpath 'codechicken:CodeChickenCore:1.7.10-1.0.7.46:dev'
classpath 'codechicken:CodeChickenLib:1.7.10-1.1.3.138:dev'
classpath 'codechicken:NotEnoughItems:1.7.10-1.0.5.110:dev'
}
}
task downloadBookshelf(type: LibDownloader) {
sourceUrl = 'http://minecraft.curseforge.com/projects/bookshelf/files/2274153/download'
target = file('libs/Bookshelf.jar')
}
apply plugin: 'idea'
idea {
module {
inheritOutputDirs = true
}
}
apply plugin: 'forge'
version = "1.7.10-1.1.0"
group = "de.sanandrew.mods"
archivesBaseName = "BetterBoat"
minecraft {
version = "1.7.10-10.13.4.1614-1.7.10"
runDir = "minecraft"
}
setupDecompWorkspace.finalizedBy downloadBookshelf
setupDevWorkspace.finalizedBy downloadBookshelf
processResources {
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand 'version': project.version, 'mcversion': project.minecraft.version
}
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
sourceSets {
main {
java { srcDir 'java' }
resources { srcDir 'resources' }
}
}
repositories {
maven {
name = 'CodeChicken'
url = 'http://chickenbones.net/maven/'
}
}
dependencies {
compile 'codechicken:CodeChickenCore:1.7.10-1.0.7.46:dev'
compile 'codechicken:CodeChickenLib:1.7.10-1.1.3.138:dev'
compile 'codechicken:NotEnoughItems:1.7.10-1.0.5.110:dev'
}
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
task sourceJar(type: Jar) {
from sourceSets.main.java
appendix = 'src'
archiveName = "${baseName}-${version}-${appendix}.jar"
}
task deobfJar(type: Jar) {
from sourceSets.main.output
appendix = 'deobf'
archiveName = "${baseName}-${version}-${appendix}.jar"
}
configurations {
deployDev
}
artifacts {
archives deobfJar
archives sourceJar
archives jar
deployDev deobfJar
}
project.ext {
releaseRepoUrl = "file://${project(':').projectDir}/maven-repo/"
}
uploadDeployDev {
repositories.mavenDeployer {
pom.artifactId = project.name
pom.version = project.version + '-deobf'
repository(url: project.releaseRepoUrl)
}
}
class LibDownloader extends DefaultTask {
@Input
String sourceUrl
@OutputFile
File target
@TaskAction
void download() {
ant.get(src: sourceUrl, dest: target)
}
}