Alter build.gradle to produce artifacts
This commit is contained in:
12
.gitignore
vendored
12
.gitignore
vendored
@@ -1,8 +1,6 @@
|
|||||||
*.iml
|
.classpath
|
||||||
*.ipr
|
.project
|
||||||
*.iws
|
.settings
|
||||||
.gradle
|
.gradle
|
||||||
.DS_Store
|
.maven
|
||||||
/build
|
build
|
||||||
*/build
|
|
||||||
/out
|
|
||||||
11
build.gradle
11
build.gradle
@@ -1,5 +1,12 @@
|
|||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
|
apply plugin: 'maven'
|
||||||
|
|
||||||
repositories {
|
group = 'net.rubygrapefruit'
|
||||||
mavenCentral()
|
archivesBaseName = 'platform'
|
||||||
|
version = '0.1'
|
||||||
|
|
||||||
|
uploadArchives {
|
||||||
|
repositories.mavenDeployer {
|
||||||
|
repository(url: uri('.maven'))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user