Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
Add maven-publish for local publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Fink committed Apr 19, 2019
1 parent 46837b0 commit 0c2f93a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ buildscript {

plugins {
id 'java'
id 'maven-publish'
}

apply plugin: 'jsonschema2pojo'
Expand All @@ -36,4 +37,16 @@ jsonSchema2Pojo {
useLongIntegers = true
}

publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'com.indeed'
artifactId = 'rabbitmq-admin'
version = '0.0.2-SNAPSHOT'

from components.java
}
}
}

ext['indeed.publish.name'] = 'rabbitmq-admin'

0 comments on commit 0c2f93a

Please sign in to comment.