Skip to content
Snippets Groups Projects
Commit 49c3565d authored by Sören Henning's avatar Sören Henning
Browse files

Fix Gradle issues

parent 3fa22170
No related branches found
No related tags found
1 merge request!208Add benchmark implementations for Hazelcast Jet
Pipeline #5866 passed
...@@ -4,8 +4,6 @@ plugins { ...@@ -4,8 +4,6 @@ plugins {
// make executable // make executable
id 'application' id 'application'
//id "org.sonarqube" version "3.0"
} }
repositories { repositories {
...@@ -14,25 +12,26 @@ repositories { ...@@ -14,25 +12,26 @@ repositories {
url "https://oss.sonatype.org/content/repositories/snapshots/" url "https://oss.sonatype.org/content/repositories/snapshots/"
} }
maven { maven {
url 'https://packages.confluent.io/maven/' url 'https://packages.confluent.io/maven/'
} }
} }
dependencies { dependencies {
implementation('org.industrial-devops:titan-ccp-common:0.1.0-SNAPSHOT') { changing = true } implementation('org.industrial-devops:titan-ccp-common:0.1.0-SNAPSHOT') { changing = true }
implementation('org.industrial-devops:titan-ccp-common-kafka:0.1.0-SNAPSHOT') { changing = true } implementation('org.industrial-devops:titan-ccp-common-kafka:0.1.0-SNAPSHOT') { changing = true }
implementation 'com.hazelcast.jet:hazelcast-jet:4.5' implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.hazelcast.jet:hazelcast-jet-kafka:4.5'
implementation 'com.hazelcast:hazelcast-kubernetes:2.2.2'
implementation 'io.confluent:kafka-avro-serializer:5.3.0'
implementation 'org.slf4j:slf4j-api:1.7.25'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.google.guava:guava:24.1-jre' implementation 'com.google.guava:guava:24.1-jre'
implementation 'org.slf4j:slf4j-api:1.7.25'
implementation 'io.confluent:kafka-avro-serializer:5.3.0'
implementation 'com.hazelcast.jet:hazelcast-jet:4.5'
implementation 'com.hazelcast.jet:hazelcast-jet-kafka:4.5'
implementation 'com.hazelcast:hazelcast-kubernetes:2.2.2'
implementation project(':hazelcastjet-commons') implementation project(':hazelcastjet-commons')
compile 'com.hazelcast.jet:hazelcast-jet-core:4.5:tests'
compile 'com.hazelcast:hazelcast:4.2:tests' testImplementation("junit:junit:4.13.2")
testImplementation 'com.hazelcast:hazelcast:4.2:tests'
// Use JUnit test framework testImplementation 'com.hazelcast.jet:hazelcast-jet-core:4.5:tests'
testImplementation("junit:junit:4.13.2")
} }
\ No newline at end of file
plugins { plugins {
// hazelcastjet common stuff
id 'theodolite.hazelcastjet' id 'theodolite.hazelcastjet'
} }
......
plugins { plugins {
// common java conventions
id 'theodolite.hazelcastjet' id 'theodolite.hazelcastjet'
} }
......
plugins { plugins {
// common java conventions
id 'theodolite.hazelcastjet' id 'theodolite.hazelcastjet'
} }
......
plugins { plugins {
// common java conventions
id 'theodolite.hazelcastjet' id 'theodolite.hazelcastjet'
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment