Skip to content
Snippets Groups Projects
build.gradle 653 B
Newer Older
plugins {
    id 'theodolite.java-commons'
}

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

Sören Henning's avatar
Sören Henning committed
dependencies {
  // These dependencies are used internally, and not exposed to consumers on their own compile classpath.
  // implementation 'org.slf4j:slf4j-simple:1.7.25'
  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.apache.kafka:kafka-streams:2.6.0'

  // Use JUnit test framework
  testImplementation 'junit:junit:4.12'