Skip to content

Commit 75b1804

Browse files
committed
chore: prepare code base for release
Add missing license headers Drop the dependency between docs and sources since we don't use code imports. This also solves a releasing issue with JAR dependencies not built at the generate-resources phase (used for doc versioning).
1 parent 28baba1 commit 75b1804

File tree

3 files changed

+38
-9
lines changed

3 files changed

+38
-9
lines changed

docs/pom.xml

-9
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,6 @@
1010

1111
<artifactId>quarkus-kafka-streams-processor-docs</artifactId>
1212

13-
<dependencies>
14-
<!-- Make sure the doc is built after the other artifacts -->
15-
<dependency>
16-
<groupId>io.quarkiverse.kafkastreamsprocessor</groupId>
17-
<artifactId>quarkus-kafka-streams-processor-deployment</artifactId>
18-
<version>${project.version}</version>
19-
</dependency>
20-
</dependencies>
21-
2213
<build>
2314
<sourceDirectory>modules/ROOT/examples</sourceDirectory>
2415
<plugins>

runtime/src/main/java/io/quarkiverse/kafkastreamsprocessor/runtime/KStreamsProcessorConfigRuntime.java

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*-
2+
* #%L
3+
* Quarkus Kafka Streams Processor
4+
* %%
5+
* Copyright (C) 2024 Amadeus s.a.s.
6+
* %%
7+
* Licensed under the Apache License, Version 2.0 (the "License");
8+
* you may not use this file except in compliance with the License.
9+
* You may obtain a copy of the License at
10+
*
11+
* http://www.apache.org/licenses/LICENSE-2.0
12+
*
13+
* Unless required by applicable law or agreed to in writing, software
14+
* distributed under the License is distributed on an "AS IS" BASIS,
15+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
* See the License for the specific language governing permissions and
17+
* limitations under the License.
18+
* #L%
19+
*/
120
package io.quarkiverse.kafkastreamsprocessor.runtime;
221

322
import io.quarkiverse.kafkastreamsprocessor.spi.properties.KStreamsProcessorConfig;

spi/src/main/java/io/quarkiverse/kafkastreamsprocessor/spi/TopologyConfigBuildItem.java

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*-
2+
* #%L
3+
* Quarkus Kafka Streams Processor
4+
* %%
5+
* Copyright (C) 2024 Amadeus s.a.s.
6+
* %%
7+
* Licensed under the Apache License, Version 2.0 (the "License");
8+
* you may not use this file except in compliance with the License.
9+
* You may obtain a copy of the License at
10+
*
11+
* http://www.apache.org/licenses/LICENSE-2.0
12+
*
13+
* Unless required by applicable law or agreed to in writing, software
14+
* distributed under the License is distributed on an "AS IS" BASIS,
15+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
* See the License for the specific language governing permissions and
17+
* limitations under the License.
18+
* #L%
19+
*/
120
package io.quarkiverse.kafkastreamsprocessor.spi;
221

322
import java.util.Map;

0 commit comments

Comments
 (0)