Skip to content

Commit

Permalink
Merge branch 'release/1.11.4.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
jangalinski committed May 26, 2024
2 parents fa46661 + 19b0338 commit a381927
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 14 deletions.
2 changes: 1 addition & 1 deletion _examples/java-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.toolisticon.kotlin.avro._</groupId>
<artifactId>avro-kotlin-examples-root</artifactId>
<version>1.11.4.1</version>
<version>1.11.4.2</version>
</parent>

<groupId>io.toolisticon.kotlin.avro.examples</groupId>
Expand Down
2 changes: 1 addition & 1 deletion _examples/kotlin-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.toolisticon.kotlin.avro._</groupId>
<artifactId>avro-kotlin-examples-root</artifactId>
<version>1.11.4.1</version>
<version>1.11.4.2</version>
</parent>

<groupId>io.toolisticon.kotlin.avro.examples</groupId>
Expand Down
2 changes: 1 addition & 1 deletion _examples/logical-type-customer-id/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.toolisticon.kotlin.avro._</groupId>
<artifactId>avro-kotlin-examples-root</artifactId>
<version>1.11.4.1</version>
<version>1.11.4.2</version>
</parent>

<groupId>io.toolisticon.kotlin.avro.examples</groupId>
Expand Down
2 changes: 1 addition & 1 deletion _examples/logical-type-money/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.toolisticon.kotlin.avro._</groupId>
<artifactId>avro-kotlin-examples-root</artifactId>
<version>1.11.4.1</version>
<version>1.11.4.2</version>
</parent>

<groupId>io.toolisticon.kotlin.avro.examples</groupId>
Expand Down
2 changes: 1 addition & 1 deletion _examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.toolisticon.kotlin.avro._</groupId>
<artifactId>avro-kotlin-root</artifactId>
<version>1.11.4.1</version>
<version>1.11.4.2</version>
</parent>

<artifactId>avro-kotlin-examples-root</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion _test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.toolisticon.kotlin.avro._</groupId>
<artifactId>avro-kotlin-root</artifactId>
<version>1.11.4.1</version>
<version>1.11.4.2</version>
</parent>

<groupId>io.toolisticon.kotlin.avro.test</groupId>
Expand Down
2 changes: 1 addition & 1 deletion avro-kotlin-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.toolisticon.kotlin.avro._</groupId>
<artifactId>avro-kotlin-root</artifactId>
<version>1.11.4.1</version>
<version>1.11.4.2</version>
</parent>

<groupId>io.toolisticon.kotlin.avro</groupId>
Expand Down
2 changes: 1 addition & 1 deletion avro-kotlin-serialization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.toolisticon.kotlin.avro._</groupId>
<artifactId>avro-kotlin-root</artifactId>
<version>1.11.4.1</version>
<version>1.11.4.2</version>
</parent>

<groupId>io.toolisticon.kotlin.avro</groupId>
Expand Down
2 changes: 1 addition & 1 deletion avro-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.toolisticon.kotlin.avro._</groupId>
<artifactId>avro-kotlin-root</artifactId>
<version>1.11.4.1</version>
<version>1.11.4.2</version>
</parent>

<groupId>io.toolisticon.kotlin.avro</groupId>
Expand Down
25 changes: 20 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>io.toolisticon.kotlin.avro._</groupId>
<artifactId>avro-kotlin-root</artifactId>
<version>1.11.4.1</version>
<version>1.11.4.2</version>

<name>pom: ${project.artifactId}</name>
<description>Root of Opinionated extension functions and helpers for using Apache Avro with Kotlin.</description>
Expand All @@ -23,15 +23,13 @@
<module>_test</module>
<module>avro-kotlin</module>
<module>avro-kotlin-serialization</module>

<module>_examples</module>
</modules>

<!-- this is the maven root, all dependencies have to be declared in the concrete modules, using avro-kotlin-parent -->
<dependencyManagement />
<dependencyManagement/>

<!-- this is the maven root, all dependencies have to be declared in the concrete modules -->
<dependencies />
<dependencies/>

<build>
<pluginManagement>
Expand All @@ -53,6 +51,23 @@
<plugins/>
</build>

<profiles>
<profile>
<!--
Example module, should be skipped during release
-->
<id>examples</id>
<activation>
<property>
<name>!skipExamples</name>
</property>
</activation>
<modules>
<module>_examples</module>
</modules>
</profile>
</profiles>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
Expand Down

0 comments on commit a381927

Please sign in to comment.