Skip to content

Commit afe03fc

Browse files
committed
fix: jitpack.io artifact
1 parent 29c4636 commit afe03fc

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

build.gradle

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = 'net.llgava'
7-
version = '1.0.1'
7+
version = '1.0.0'
88
description = 'A Java library to avoid repetitive work while developing Minecraft Spigot/Paper plugins.'
99
String mc_version = '1.13'
1010

@@ -41,4 +41,18 @@ project.gradle.projectsEvaluated {
4141
}
4242
}
4343

44+
afterEvaluate {
45+
apply plugin: 'maven-publish'
46+
publishing {
47+
publications {
48+
maven(MavenPublication) {
49+
groupId project.group
50+
artifactId project.name
51+
version project.version
52+
from components.java
53+
}
54+
}
55+
}
56+
}
57+
4458
test { useJUnit() }

0 commit comments

Comments
 (0)