This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.gradle
163 lines (143 loc) · 3.74 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
// Gradle build script which uses the ForgeGradle plugin.
// add ForgeGradle plugin repo
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 to this project
apply plugin: 'forge'
apply plugin: 'maven'
configurations {
deployerJars
}
dependencies {
deployerJars "org.apache.maven.wagon:wagon-ssh:2.2"
}
sourceSets {
main {
java {
srcDir 'src/main/java'
}
resources {
srcDir 'src/main/resources'
}
}
demo {
java {
srcDir 'src/demo/java'
}
}
}
// minecraft properteis
minecraft {
version = "1.7.10-10.13.4.1558-1.7.10"
}
//buildNumber is deprecated
def buildnumber = 0
if(System.getenv().BUILD_NUMBER != null)
{
buildnumber = System.getenv().BUILD_NUMBER
}
// version and stuff
version = "3.4.1.${buildnumber}"
group= "com.jadarstudios.developercapes"
archivesBaseName = "DeveloperCapes"
// jar naming
jar
{
appendix = "${minecraft.version}"
}
// add a source jar
task sourceJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
appendix = "${minecraft.version}"
}
// add a javadoc jar
task javadocJar(type: Jar, dependsOn: javadoc) {
from 'build/docs/javadoc'
classifier = 'javadoc'
appendix = "${minecraft.version}"
}
// because the normal output has been made to be obfuscated
task deobfJar(type: Jar) {
from sourceSets.main.output
classifier = 'deobf'
appendix = "${minecraft.version}"
}
// fix mcmod.info and include resources
processResources
{
// // 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'
// }
}
artifacts
{
archives sourceJar
archives deobfJar
archives javadocJar
}
uploadArchives
{
repositories.mavenDeployer
{
configuration = configurations.deployerJars
repository(url: "sftp://repo.jadarstudios.com/maven") {
//
//
authentication(userName: System.getenv().username, password: System.getenv().password)
}
pom.project {
name project.archivesBaseName
artifactId project.archivesBaseName
packaging 'jar'
description 'DeveloperCapes is a library for Minecraft that allows developers to give capes to select people.'
url 'https://github.com/jadar/DeveloperCapes/'
scm {
url 'https://github.com/jadar/DeveloperCapes/'
connection 'scm:git:git://github.com/jadar/DeveloperCapes.git'
developerConnection 'scm:git:git@github.com:jadar/DeveloperCapes.git'
}
issueManagement {
system 'github'
url 'https://github.com/jadar/DeveloperCapes/issues'
}
licenses {
license {
name 'MIT License'
url 'https://raw.github.com/jadar/DeveloperCapes/master/LICENSE'
distribution 'repo'
}
}
developers {
developer {
id 'jadar'
name 'Jadar'
roles { role 'developer' }
}
}
}
}
}