This repository has been archived by the owner on Mar 5, 2022. It is now read-only.
forked from acmi/L2unreal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
53 lines (46 loc) · 1.51 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
group 'acmi.l2.clientmod'
version '1.4.3'
apply plugin: 'java'
apply plugin: 'maven'
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}
configure(install.repositories.mavenInstaller) {
pom.project {
name = 'L2unreal'
description = 'Library for reading/modifying Lineage 2 unrealscript objects.'
url = 'https://github.com/acmi/L2unreal'
licenses {
license {
name = 'The MIT License'
url = 'https://opensource.org/licenses/MIT'
distribution = 'repo'
}
}
developers {
developer {
id = 'acmi'
name = 'Aleksei Sazonov'
email = 'acmi831@gmail.com'
}
}
}
}
repositories {
mavenCentral()
maven { url "https://raw.githubusercontent.com/acmi/L2io/mvn-repo" }
maven { url "https://raw.githubusercontent.com/acmi/Serializer/mvn-repo" }
maven { url "https://raw.githubusercontent.com/acmi/L2crypt/mvn-repo" }
}
dependencies {
compile group: 'acmi.l2.clientmod', name: 'serializer', version: '1.2.+'
compile group: 'acmi.l2.clientmod', name: 'l2io', version: '2.2.+'
compile group: 'acmi.l2.clientmod', name: 'l2crypt', version: '1.3.+'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
testCompile 'junit:junit:4.12'
}