Skip to content

Commit df60863

Browse files
committed
Merge branch 'release/0.2.2'
2 parents 7d4668c + 3a378ae commit df60863

File tree

11 files changed

+18
-25
lines changed

11 files changed

+18
-25
lines changed

.github/workflows/development.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
java-version: 17
3131
distribution: zulu
3232
cache: maven
33+
server-id: central
3334

3435
# Prepare
3536
- name: Prepare Maven Wrapper

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
java-version: 17
3131
distribution: 'zulu'
3232
cache: 'maven'
33-
server-id: ossrh
33+
server-id: central
3434
server-username: OSS_CENTRAL_USERNAME # env variable for Maven Central
3535
server-password: OSS_CENTRAL_PASSWORD # env variable for Maven Central
3636

_build/parent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>io.toolisticon.kotlin.generation._</groupId>
77
<artifactId>kotlin-code-generation-root</artifactId>
8-
<version>0.2.1</version>
8+
<version>0.2.2</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

1212
<artifactId>kotlin-code-generation-parent</artifactId>
13-
<name>pom: ${project.artifactId}</name>
13+
<name>pom: kotlin-code-generation-parent</name>
1414
<description>Common parent pom for all modules.</description>
1515
<packaging>pom</packaging>
1616

_build/report-generator/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>io.toolisticon.kotlin.generation._</groupId>
77
<artifactId>kotlin-code-generation-parent</artifactId>
8-
<version>0.2.1</version>
8+
<version>0.2.2</version>
99
<relativePath>../parent/pom.xml</relativePath>
1010
</parent>
1111

1212
<artifactId>report-generator</artifactId>
13-
<name>report: ${project.artifactId}</name>
13+
<name>report: report-generator</name>
1414
<description>Generates aggregate reports.</description>
1515
<packaging>pom</packaging>
1616

_itest/builder-itest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.toolisticon.kotlin.generation._</groupId>
77
<artifactId>kotlin-code-generation-itest-root</artifactId>
8-
<version>0.2.1</version>
8+
<version>0.2.2</version>
99
</parent>
1010

1111
<groupId>io.toolisticon.kotlin.generation.itest</groupId>

_itest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.toolisticon.kotlin.generation._</groupId>
77
<artifactId>kotlin-code-generation-parent</artifactId>
8-
<version>0.2.1</version>
8+
<version>0.2.2</version>
99
<relativePath>../_build/parent/pom.xml</relativePath>
1010
</parent>
1111

_itest/spi-itest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.toolisticon.kotlin.generation._</groupId>
77
<artifactId>kotlin-code-generation-itest-root</artifactId>
8-
<version>0.2.1</version>
8+
<version>0.2.2</version>
99
</parent>
1010

1111
<groupId>io.toolisticon.kotlin.generation.itest</groupId>

kotlin-code-generation-bom/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
<parent>
66
<groupId>io.toolisticon.kotlin.generation._</groupId>
77
<artifactId>kotlin-code-generation-root</artifactId>
8-
<version>0.2.1</version>
8+
<version>0.2.2</version>
99
</parent>
1010

1111
<groupId>io.toolisticon.kotlin.generation</groupId>
1212
<artifactId>kotlin-code-generation-bom</artifactId>
13+
<name>kotlin-code-generation-bom</name>
1314
<description>Bill of material for kotlin-code-generation.</description>
1415
<packaging>pom</packaging>
1516

kotlin-code-generation-test/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
<parent>
66
<groupId>io.toolisticon.kotlin.generation._</groupId>
77
<artifactId>kotlin-code-generation-parent</artifactId>
8-
<version>0.2.1</version>
8+
<version>0.2.2</version>
99
<relativePath>../_build/parent/pom.xml</relativePath>
1010
</parent>
1111

1212
<groupId>io.toolisticon.kotlin.generation</groupId>
1313
<artifactId>kotlin-code-generation-test</artifactId>
14+
<name>kotlin-code-generation-test</name>
1415
<description>Tools for testing generated classes. This lib exposes testing libraries and is supposed to be included
1516
with `scope=test`
1617
</description>

kotlin-code-generation/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
<parent>
66
<groupId>io.toolisticon.kotlin.generation._</groupId>
77
<artifactId>kotlin-code-generation-parent</artifactId>
8-
<version>0.2.1</version>
8+
<version>0.2.2</version>
99
<relativePath>../_build/parent/pom.xml</relativePath>
1010
</parent>
1111

1212
<groupId>io.toolisticon.kotlin.generation</groupId>
1313
<artifactId>kotlin-code-generation</artifactId>
14+
<name>kotlin-code-generation</name>
1415
<description>Wrapping core components for kotlin code generation with kotlin-poet.</description>
1516

1617
<dependencies>

0 commit comments

Comments
 (0)