update build to publish to maven
This commit is contained in:
parent
82e5c98a64
commit
d9d497e1db
2 changed files with 13 additions and 3 deletions
12
build.gradle
12
build.gradle
|
@ -5,6 +5,8 @@ plugins {
|
||||||
id 'maven-publish'
|
id 'maven-publish'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def ENV = System.getenv()
|
||||||
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
|
||||||
|
@ -75,6 +77,14 @@ publishing {
|
||||||
// select the repositories you want to publish to
|
// select the repositories you want to publish to
|
||||||
repositories {
|
repositories {
|
||||||
// uncomment to publish to the local maven
|
// uncomment to publish to the local maven
|
||||||
// mavenLocal()
|
maven {
|
||||||
|
def snapshotsUrl = 'http://192.168.1.156:8081/repository/maven-snapshots/'
|
||||||
|
def releasesUrl = 'http://192.168.1.156:8081/repository/maven-releases/'
|
||||||
|
url = version.endsWith('SNAPSHOT') ? snapshotsUrl : releasesUrl
|
||||||
|
credentials {
|
||||||
|
username 'admin'
|
||||||
|
password ENV.MAVEN_PASSWORD
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
|
||||||
loader_version=0.10.8
|
loader_version=0.10.8
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 0.1.5
|
mod_version = 0.1.6-SNAPSHOT
|
||||||
maven_group = pm.j4
|
maven_group = pm.j4
|
||||||
archives_base_name = kerosene
|
archives_base_name = kerosene
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue