-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
104 lines (92 loc) · 2.77 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
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
}
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
group = 'de.oceanlabs.mcp'
version = '3.6.7'
targetCompatibility = '1.6'
sourceCompatibility = '1.6'
repositories {
mavenCentral()
}
jar {
manifest.attributes('Main-Class': 'RetroGuard')
}
shadowJar {
classifier 'fatjar'
manifest.attributes('Main-Class': 'RetroGuard')
}
artifacts {
archives jar
archives shadowJar
}
dependencies {
compile 'net.sf.jopt-simple:jopt-simple:4.5'
compile 'com.google.code.gson:gson:2.2.4'
}
configurations { deployJars }
uploadArchives {
repositories {
add project.repositories.mavenLocal()
}
repositories.mavenDeployer {
configuration = configurations.deployJars
if (project.hasProperty("filesmaven")) {
logger.info('Publishing to files server')
repository(url: project.filesmaven.url) {
authentication(userName: project.filesmaven.username, privateKey: project.filesmaven.key)
}
} else {
logger.info('Publishing to repo folder')
repository(url: 'file://localhost/' + project.file('repo').getAbsolutePath())
}
pom {
groupId = project.group
version = project.version
artifactId = project.archivesBaseName
}
pom.project {
name project.archivesBaseName
packaging 'jar'
description 'The GPL version of the RetroGuard library. Modified by the MCP team'
url 'https://github.com/ModCoderPack/Retroguard'
scm {
url 'https://github.com/ModCoderPack/Retroguard'
connection 'scm:git:git://github.com/ModCoderPack/Retroguard.git'
developerConnection 'scm:git:git@github.com:ModCoderPack/Retroguard.git'
}
issueManagement {
system 'github'
url 'https://github.com/ModCoderPack/Retroguard/issues'
}
licenses {
license {
name 'GNU GENERAL PUBLIC LICENSE'
url 'http://www.retrologic.com/rg-gnu-gpl.html'
distribution 'repo'
}
}
developers {
developer {
id 'Fesh0r'
name 'Fesh0r'
roles { role 'developer' }
}
developer {
id 'Searge'
name 'Searge'
roles { role 'developer' }
}
}
}
}
}