Skip to content

Commit

Permalink
Milestone/13 release4 8 0 1 (#346)
Browse files Browse the repository at this point in the history
* maven 3.9.5, fixes #345

* chore(deps): bump org.axonframework:axon-bom from 4.7.4 to 4.8.3 (#340)

Bumps [org.axonframework:axon-bom](https://github.com/AxonFramework/axon-bom) from 4.7.4 to 4.8.3.
- [Release notes](https://github.com/AxonFramework/axon-bom/releases)
- [Commits](AxonFramework/axon-bom@axon-4.7.4...axon-4.8.3)

---
updated-dependencies:
- dependency-name: org.axonframework:axon-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* cleanup junit4 example

* clean up slf4j dependencies, fixes #341

* enforce junit 5.10, fixes #342

* fix byte-buddy 1.14.7, fixes #344

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
jangalinski and dependabot[bot] authored Oct 10, 2023
1 parent 8e622b2 commit c38414c
Show file tree
Hide file tree
Showing 11 changed files with 92 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.2/apache-maven-3.9.2-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
Empty file.
6 changes: 6 additions & 0 deletions extension/assert/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-messaging</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
12 changes: 12 additions & 0 deletions extension/jgiven/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-test</artifactId>
<exclusions>
<exclusion>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</exclusion>
</exclusions>
<scope>compile</scope>
</dependency>

Expand All @@ -36,6 +42,12 @@
</dependency>

<!-- TEST -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit5.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.github.microutils</groupId>
Expand Down
6 changes: 6 additions & 0 deletions extension/jgiven/junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
<artifactId>jgiven-junit5</artifactId>
<version>${jgiven.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit5.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>io.toolisticon.testing</groupId>
Expand Down
6 changes: 6 additions & 0 deletions extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>

</project>
20 changes: 12 additions & 8 deletions extension/upcaster/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-configuration</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down Expand Up @@ -63,17 +69,15 @@
<artifactId>jackson-datatype-jsr310</artifactId>
<scope>test</scope>
</dependency>
<!--
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-compiler-embeddable</artifactId>
<version>${kotlin.version}</version>
<scope>test</scope>
</dependency>
-->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>

Expand Down
6 changes: 6 additions & 0 deletions lib/fixtures/giftcard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-configuration</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
12 changes: 12 additions & 0 deletions lib/fixtures/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,22 @@
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-modelling</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-spring</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
Expand Down
9 changes: 9 additions & 0 deletions lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,13 @@
<modules>
<module>fixtures</module>
</modules>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
22 changes: 21 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@
<kotlin.version>1.9.10</kotlin.version>

<!-- LIBS -->
<axon-bom.version>4.7.4</axon-bom.version>
<axon-bom.version>4.8.3</axon-bom.version>
<jgiven.version>1.3.0</jgiven.version>
<jgiven-kotlin.version>1.3.0.0</jgiven-kotlin.version>
<slf4j-api.version>2.0.9</slf4j-api.version>

<!-- TEST -->
<jackson.version>2.15.2</jackson.version>
Expand Down Expand Up @@ -112,8 +113,27 @@
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.11</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<exclusions>
<!-- because 3.24.4 comes with v1.12.21 and latest is 1.4.8 -->
<exclusion>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit c38414c

Please sign in to comment.