mirror of
https://github.com/corda/corda.git
synced 2024-12-28 16:58:55 +00:00
Doorman can now be published to maven local (#125)
* Doorman can now be published to maven local for testing against other projects locally. * Fixed the classifier for the JAR
This commit is contained in:
parent
99d042ecd3
commit
855c22218a
@ -11,6 +11,7 @@ description 'Network management module encapsulating components such as Doorman,
|
|||||||
apply plugin: 'us.kirchmeier.capsule'
|
apply plugin: 'us.kirchmeier.capsule'
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
apply plugin: 'kotlin-jpa'
|
apply plugin: 'kotlin-jpa'
|
||||||
|
apply plugin: 'maven-publish'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
@ -134,3 +135,13 @@ dependencies {
|
|||||||
// Needed by jira rest client
|
// Needed by jira rest client
|
||||||
compile "com.atlassian.fugue:fugue:2.6.1"
|
compile "com.atlassian.fugue:fugue:2.6.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
publications {
|
||||||
|
doorman(MavenPublication) {
|
||||||
|
artifact buildDoormanJAR {
|
||||||
|
classifier ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user