Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding maven plugin to gradle scripts of agent, sdk and config projec…
…ts (#1039)

Co-authored-by: Marius Oehler <marius.oehler@novatec-gmbh.de>
  • Loading branch information
florinandone and mariusoe committed Apr 14, 2021
1 parent bd2fb52 commit 00595e0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 3 additions & 0 deletions inspectit-ocelot-agent/build.gradle
Expand Up @@ -3,6 +3,8 @@ plugins {
}

apply plugin: 'java'
apply plugin: 'maven' // for publishing to the local maven repository

evaluationDependsOn(':inspectit-ocelot-bootstrap')
evaluationDependsOn(':inspectit-ocelot-core')

Expand All @@ -14,6 +16,7 @@ test {
}
}

group = 'rocks.inspectit.ocelot'
sourceCompatibility = 1.8

configurations {
Expand Down
5 changes: 2 additions & 3 deletions inspectit-ocelot-config/build.gradle
@@ -1,6 +1,6 @@

apply plugin: 'java'
apply plugin: "maven" //for publishing to the local maven repository
apply plugin: 'maven' // for publishing to the local maven repository

test {
useJUnitPlatform()
Expand All @@ -14,8 +14,7 @@ repositories {
mavenLocal()
}

group = "inspectit-ocelot"

group = 'rocks.inspectit.ocelot'
sourceCompatibility = 1.8

dependencies {
Expand Down
5 changes: 2 additions & 3 deletions inspectit-ocelot-sdk/build.gradle
@@ -1,13 +1,12 @@

apply plugin: 'java'
apply plugin: "maven" //for publishing to the local maven repository
apply plugin: 'maven' // for publishing to the local maven repository

repositories {
mavenLocal()
}

group = "rocks.inspectit.ocelot"

group = 'rocks.inspectit.ocelot'
sourceCompatibility = 1.8

dependencies {
Expand Down

0 comments on commit 00595e0

Please sign in to comment.