axon-spring-aot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.axonframework.extensions.spring-aot</groupId> <artifactId>axon-spring-aot</artifactId> <version>4.11.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2010-2025. Axon Framework ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <groupId>org.axonframework.extensions.spring-aot</groupId> <artifactId>axon-spring-aot</artifactId> <version>4.11.0</version> <modelVersion>4.0.0</modelVersion> <name>Axon Framework - Spring Ahead of Time</name> <description> Extension for Axon Framework providing support for Spring's Ahead of Time optimizations. </description> <inceptionYear>2022</inceptionYear> <url>https://www.axoniq.io/</url> <licenses> <license> <name>Apache 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <issueManagement> <system>GitHub</system> <url>https://github.com/AxonFramework/extension-spring-aot/issues</url> </issueManagement> <properties> <!-- Build / Plugins --> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <!-- Main --> <axon.version>4.11.0</axon.version> <spring.version>6.2.2</spring.version> <spring-boot.version>3.4.2</spring-boot.version> <!-- Database --> <jakarta.persistence.version>3.1.0</jakarta.persistence.version> <!-- Serialization --> <jackson.version>2.18.2</jackson.version> <!-- Testing --> <assertj.version>3.27.3</assertj.version> <junit.jupiter.version>5.10.1</junit.jupiter.version> <mockito.version>5.15.2</mockito.version> <netty.version>4.1.117.Final</netty.version> <!-- Build / Plugin --> <jacoco-maven.version>0.8.12</jacoco-maven.version> <maven-assembly.version>3.7.1</maven-assembly.version> <maven-clean.version>3.4.0</maven-clean.version> <maven-compiler.version>3.13.0</maven-compiler.version> <maven-deploy.version>3.1.3</maven-deploy.version> <maven-gpg.version>3.2.7</maven-gpg.version> <maven-install.version>3.1.3</maven-install.version> <maven-jar.version>3.4.2</maven-jar.version> <maven-javadoc.version>3.11.2</maven-javadoc.version> <maven-release.version>3.1.1</maven-release.version> <maven-source.version>3.3.1</maven-source.version> <maven-surefire.version>3.5.2</maven-surefire.version> <maven-resources.version>3.3.1</maven-resources.version> </properties> <dependencies> <!-- Axon --> <dependency> <groupId>org.axonframework</groupId> <artifactId>axon-spring</artifactId> <version>${axon.version}</version> </dependency> <dependency> <groupId>org.axonframework</groupId> <artifactId>axon-server-connector</artifactId> <version>${axon.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.axonframework</groupId> <artifactId>axon-spring-boot-autoconfigure</artifactId> <version>${axon.version}</version> <scope>test</scope> </dependency> <!-- Spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>${spring-boot.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test</artifactId> <version>${spring-boot.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> <version>${spring-boot.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring-boot.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </exclusion> </exclusions> </dependency> <!-- Gson is only there to ensure we have a Spring-compatible version instead of pulling in an older version through the axon-server connector, transitively. --> <!-- The Gson dependency can be removed once we're on an Axon Server Connector version with an upgraded gRPC version. --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.12.1</version> </dependency> <!-- Database --> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>2.3.232</version> <scope>test</scope> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <version>${jakarta.persistence.version}</version> <optional>true</optional> </dependency> <!-- Serialization --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> <optional>true</optional> </dependency> <!-- Testing --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-transport-classes-epoll</artifactId> <version>${netty.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean.version}</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>${maven-install.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <!-- compile --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <encoding>UTF-8</encoding> </configuration> </plugin> <!-- test --> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire.version}</version> <configuration> <includes> <include>**/*Test.java</include> <include>**/*Tests.java</include> <include>**/*Test_*.java</include> <include>**/*Tests_*.java</include> </includes> </configuration> </plugin> <!-- package --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>${maven-assembly.version}</version> <configuration> <descriptorSourceDirectory>assembly</descriptorSourceDirectory> <archiverConfig> <duplicateBehavior>skip</duplicateBehavior> </archiverConfig> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar.version}</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc.version}</version> <executions> <execution> <id>attach-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doclint>none</doclint> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source.version}</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- deploy --> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy.version}</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${maven-release.version}</version> <configuration> <!-- prepare goal configuration --> <mavenExecutorId>forked-path</mavenExecutorId> <pushChanges>false</pushChanges> <!-- perform goal configuration --> <mavenExecutorId>forked-path</mavenExecutorId> <localCheckout>true</localCheckout> <releaseProfiles>release-sign-artifacts</releaseProfiles> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources.version}</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>coverage</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven.version}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>release-sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <!--suppress MavenModelInspection --> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <!-- Deploy and release configuration --> <distributionManagement> <snapshotRepository> <id>sonatype</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <uniqueVersion>true</uniqueVersion> </snapshotRepository> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> <uniqueVersion>false</uniqueVersion> </repository> </distributionManagement> <scm> <connection>scm:git:git://github.com/AxonFramework/extension-spring-aot.git</connection> <developerConnection>scm:git:git@github.com:AxonFramework/extension-spring-aot.git</developerConnection> <url>https://github.com/AxonFramework/extension-spring-aot</url> <tag>axon-spring-aot-4.11.0</tag> </scm> <developers> <developer> <name>Allard Buijze</name> <email>allard.buijze@axoniq.io</email> <organization>AxonIQ</organization> <organizationUrl>https://axoniq.io</organizationUrl> <roles> <role>Project Owner</role> </roles> </developer> <developer> <name>Steven van Beelen</name> <email>steven.vanbeelen@axoniq.io</email> <organization>AxonIQ</organization> <organizationUrl>https://axoniq.io</organizationUrl> <roles> <role>Lead Developer</role> </roles> </developer> <developer> <name>Gerard Klijs</name> <email>gerard.klijs@axoniq.io</email> <organization>AxonIQ</organization> <organizationUrl>https://axoniq.io</organizationUrl> <roles> <role>Developer</role> </roles> </developer> <developer> <name>Mitchell Herrijgers</name> <email>mitchell.herrijgers@axoniq.io</email> <organization>AxonIQ</organization> <organizationUrl>https://axoniq.io</organizationUrl> <roles> <role>Developer</role> </roles> </developer> </developers> </project>