Added maven local publishing.

This commit is contained in:
Erik C. Thauvin 2017-05-21 13:52:24 -07:00
parent 60b9b76fcd
commit 050548c110

View file

@ -1,4 +1,5 @@
apply plugin: 'java'
apply plugin: 'maven-publish'
group = 'opensymphony'
version = '2.4.3-ect'
@ -36,3 +37,11 @@ jar {
"Implementation-Vendor": "OpenSymphony")
}
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}