Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
env:
CI_COMMIT_CHANGELOG_MESSAGE: Update Changelog
CI_COMMIT_CHANGELOG_AUTHOR: ${{ github.event.repository.name }} Changelog Generator
JAVA_VERSION: 11
JAVA_VERSION: 17
steps:
- name: (GIT) Checkout code
uses: actions/checkout@v4
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ that generates (by default) the ResourceBundle `TypeAlias.java` inside the defau
<dependency>
<groupId>io.github.joht.alias</groupId>
<artifactId>type-alias</artifactId>
<version>2.0.0</version>
<version>3.0.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
Expand All @@ -45,6 +45,12 @@ All changes are listed in [CHANGELOG.md](./CHANGELOG.md). The file is generated
- `type-alias-example` had been migrated to Java 11
- `type-alias-axon-serializer-integration-test` will no longer be published to maven central

#### Breaking changes in Version 3.x

- `type-alias-jsonb-typereference` had been migrated to Java 17
- `type-alias-example` had been migrated to Java 17
- `type-alias-axon-serializer-integration-test` had been migrated to Java 17

### Contents
- [type-alias](https://github.com/JohT/alias/tree/master/type-alias)
contains the main module with the java annotation processing based file generator.
Expand Down
9 changes: 4 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>io.github.joht.alias</groupId>
<artifactId>alias-parent</artifactId>
<version>2.0.1-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>alias</name>
Expand Down Expand Up @@ -58,7 +58,7 @@
<properties>
<project.scm.id>GitHub</project.scm.id>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<java.version>17</java.version>
<library.java.version>1.8</library.java.version>

<maven.compiler.version>3.14.0</maven.compiler.version>
Expand All @@ -73,7 +73,6 @@
<!-- Test libraries -->
<junit-jupiter.version>5.13.1</junit-jupiter.version>
<hamcrest.version>3.0</hamcrest.version>
<mockito.version>1.10.19</mockito.version>
</properties>

<modules>
Expand All @@ -97,8 +96,8 @@
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
<artifactId>mockito-core</artifactId>
<version>5.18.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
5 changes: 2 additions & 3 deletions type-alias-axon-serializer-integration-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>io.github.joht.alias</groupId>
<artifactId>type-alias-axon-serializer-integration-test</artifactId>
<version>2.0.1-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>

<name>type-alias-axon-serializer-integration-test</name>
<description>Contains the integration test for the type alias aware axon serializer including a fully working demo configuration for axon using JavaEE 8.</description>
Expand Down Expand Up @@ -48,10 +48,9 @@
<wildfly.version>36.0.1.Final</wildfly.version>

<!-- Unit testing -->
<equalsverifier.version>3.19.4</equalsverifier.version>
<equalsverifier.version>4.0.3</equalsverifier.version>
<junit-jupiter.version>5.13.1</junit-jupiter.version>
<hamcrest.version>2.2</hamcrest.version>
<mockito.version>1.10.19</mockito.version>

<!-- Maven Plugins -->
<maven.compiler.version>3.14.0</maven.compiler.version>
Expand Down
4 changes: 2 additions & 2 deletions type-alias-axon-serializer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.github.joht.alias</groupId>
<artifactId>alias-parent</artifactId>
<version>2.0.1-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
</parent>

<artifactId>type-alias-axon-serializer</artifactId>
Expand Down Expand Up @@ -39,7 +39,7 @@
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion type-alias-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.github.joht.alias</groupId>
<artifactId>alias-parent</artifactId>
<version>2.0.1-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
</parent>

<artifactId>type-alias-example</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion type-alias-jsonb-typereference/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.github.joht.alias</groupId>
<artifactId>alias-parent</artifactId>
<version>2.0.1-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
</parent>
<artifactId>type-alias-jsonb-typereference</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion type-alias/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.github.joht.alias</groupId>
<artifactId>alias-parent</artifactId>
<version>2.0.1-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
</parent>

<artifactId>type-alias</artifactId>
Expand Down
Loading