mirror of
https://github.com/corda/corda.git
synced 2024-12-27 08:22:35 +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: 'kotlin'
|
||||
apply plugin: 'kotlin-jpa'
|
||||
apply plugin: 'maven-publish'
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
@ -133,4 +134,14 @@ dependencies {
|
||||
}
|
||||
// Needed by jira rest client
|
||||
compile "com.atlassian.fugue:fugue:2.6.1"
|
||||
}
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
doorman(MavenPublication) {
|
||||
artifact buildDoormanJAR {
|
||||
classifier ""
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user