-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
172 lines (143 loc) · 5.06 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
}
}
apply plugin: "forge"
apply plugin: "signing"
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = "javadoc"
from javadoc
}
task compile (type: JavaCompile)
task apiJar(type: Jar) {
classifier = "api"
from fileTree(dir: "src/main/java").matching {
include "com/github/haringat/openjscomputers/api/**"
include "com/github/haringat/openjscomputers/v8/api/DirectApi"
include "com/github/haringat/openjscomputers/v8/api/ObjectApi"
}
}
task sourcesJar(type: Jar) {
classifier = "sources"
from fileTree(dir: "src/main/java")
}
artifacts {
archives javadocJar, sourcesJar, apiJar
}
signing {
sign configurations.archives
}
file "build.properties" withReader {
def prop = new Properties()
prop.load(it)
ext.config = new ConfigSlurper().parse prop
}
version = "${config.minecraft.version}-${config.ocjs.version}"
group = "com.github.haringat" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = config.ocjs.modid
minecraft {
version = config.forge.version
runDir = "eclipse"
replace("\${OJSC_VERSION}", project.version)
replace("\${OJSC_NAME}", config.ocjs.name)
replace("\${OJSC_MODID}", config.ocjs.modid)
}
configurations {
embed
compile.extendsFrom(embed)
}
repositories {
maven {
name = "j2v8"
url = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
}
maven {
name = "OpenComputers"
url = "http://maven.cil.li/"
}
}
dependencies {
embed "com.eclipsesource.j2v8:j2v8_macosx_x86_64:${config.j2v8.version}"
embed "com.eclipsesource.j2v8:j2v8_linux_x86_64:${config.j2v8.version}"
embed "com.eclipsesource.j2v8:j2v8_win32_x86:${config.j2v8.version}"
embed "com.eclipsesource.j2v8:j2v8_win32_x86_64:${config.j2v8.version}"
compile "li.cil.oc:OpenComputers:${config.oc.version}:dev"
// you may put jars on which you depend on in ./libs
// or you may define them like so..
//compile "some.group:artifact:version:classifier"
//compile "some.group:artifact:version"
// real examples
//compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env
//compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env
// for more info...
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
// http://www.gradle.org/docs/current/userguide/dependency_management.html
}
/*jar {
from configurations.embed.collect { it.isDirectory() ? it : zipTree(it) }
}*/
processResources
{
// this will ensure that this task is redone when the versions change.
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
// replace version and mcversion
expand 'version':project.version, 'mcversion':project.minecraft.version
}
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
uploadArchives {
repositories.mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name "OpenJsComputers"
packaging "jar"
// optionally artifactId can be defined here
description "Adds an ECMAScript (JavaScript) based architecture to OpenComputers."
url "https://www.github.com/Haringat/JPromise"
scm {
connection "scm:git:git://github.com/Haringat/OpenJsComputers.git"
developerConnection "scm:git:ssh://github.com:Haringat/OpenJsComputers.git"
url "https://github.com/Haringat/OpenJsComputers"
}
licenses {
license {
name "MIT License"
url "http://opensource.org/licenses/MIT"
}
}
developers {
developer {
id "Haringat"
organizationUrl "https://github.com/Haringat"
name "Marcel Mundl"
email "Marcel@Mundlhome.de"
}
}
}
}
}