Skip to content

Commit

Permalink
KIEKER-1898 Fixes to examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
avanhoorn committed Oct 7, 2021
1 parent bb18028 commit 38dc489
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
10 changes: 5 additions & 5 deletions kieker-examples/userguide/ch3-4--custom-components/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ plugins {
repositories {
mavenLocal()
mavenCentral()
jcenter()
jcenter()
}

dependencies {
compile 'ch.qos.logback:logback-classic:1.1.7'
compile 'org.slf4j:slf4j-api:1.7.30'
compile 'org.codehaus.groovy:groovy-all:3.0.2'
compile 'net.kieker-monitoring:kieker:1.15'
compile 'ch.qos.logback:logback-classic:1.1.7'
compile 'org.slf4j:slf4j-api:1.7.30'
compile 'org.codehaus.groovy:groovy-all:3.0.2'
compile 'net.kieker-monitoring:kieker:1.15:emf'
}

distTar.enabled=false
Expand Down
11 changes: 6 additions & 5 deletions kieker-examples/userguide/manual-instrumentation/build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
apply plugin: 'application'

repositories {
mavenLocal()
mavenCentral()
jcenter()
jcenter()
// maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}

dependencies {
implementation 'ch.qos.logback:logback-classic:1.1.7'
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.codehaus.groovy:groovy-all:3.0.2'
implementation 'ch.qos.logback:logback-classic:1.1.7'
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.codehaus.groovy:groovy-all:3.0.2'

implementation 'net.kieker-monitoring:kieker:1.15'
implementation 'net.kieker-monitoring:kieker:1.15:emf'
implementation fileTree('lib') {
include 'kieker-*.jar'
}
Expand Down

0 comments on commit 38dc489

Please sign in to comment.