Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed May 16, 2024
1 parent b2ee7e2 commit 71d325d
Show file tree
Hide file tree
Showing 112 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ You can add streams-bootstrap via Maven Central.
#### Gradle

```gradle
implementation group: 'com.bakdata.kafka', name: 'streams-bootstrap', version: '3.0.0'
implementation group: 'com.bakdata.kafka', name: 'streams-bootstrap-cli', version: '3.0.0'
```

#### Maven
Expand All @@ -35,7 +35,7 @@ implementation group: 'com.bakdata.kafka', name: 'streams-bootstrap', version: '

<dependency>
<groupId>com.bakdata.kafka</groupId>
<artifactId>streams-bootstrap</artifactId>
<artifactId>streams-bootstrap-cli</artifactId>
<version>3.0.0</version>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ pluginManagement {
rootProject.name = 'streams-bootstrap'

include(
":streams-bootstrap",
":streams-bootstrap-core",
":streams-bootstrap-test",
":streams-bootstrap-large-messages",
":streams-bootstrap-picocli",
":streams-bootstrap-cli",
)
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

dependencies {
api(project(":streams-bootstrap"))
api(project(":streams-bootstrap-core"))
api(group = "info.picocli", name = "picocli", version = "4.7.5")
val log4jVersion: String by project
implementation(group = "org.apache.logging.log4j", name = "log4j-core", version = log4jVersion)
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 bakdata
* Copyright (c) 2024 bakdata
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 bakdata
* Copyright (c) 2024 bakdata
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 bakdata
* Copyright (c) 2024 bakdata
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 bakdata
* Copyright (c) 2024 bakdata
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 bakdata
* Copyright (c) 2024 bakdata
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 bakdata
* Copyright (c) 2024 bakdata
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion streams-bootstrap-large-messages/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
description = "Utils for using Large Message SerDe with your Kafka Streams Application"

dependencies {
api(project(":streams-bootstrap"))
api(project(":streams-bootstrap-core"))
implementation(group = "com.bakdata.kafka", name = "large-message-core", version = "2.6.0")
}
2 changes: 1 addition & 1 deletion streams-bootstrap-test/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description = "Utils for testing your Kafka Streams Application"

dependencies {
api(project(":streams-bootstrap"))
api(project(":streams-bootstrap-core"))
val fluentKafkaVersion: String by project
api(
group = "com.bakdata.fluent-kafka-streams-tests",
Expand Down

0 comments on commit 71d325d

Please sign in to comment.