-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (40 loc) · 936 Bytes
/
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
plugins {
id 'java'
id 'maven-publish'
}
java {
withSourcesJar()
}
group 'com.fiskmods.quantify'
version project.version
repositories {
mavenCentral()
}
dependencies {
implementation "org.ow2.asm:asm-tree:$asmVersion"
implementation "org.ow2.asm:asm-commons:$asmVersion"
implementation "org.ow2.asm:asm-util:$asmVersion"
}
publishing {
publications {
maven(MavenPublication) {
groupId = group
artifactId = rootProject.name
version = version
from components.java
pom {
name = rootProject.name
description = project.description
}
}
}
repositories {
maven {
credentials {
username = "$repsyUsername"
password = "$repsyPassword"
}
url = "https://repsy.io/mvn/fiskfille/fiskmods/"
}
}
}