Skip to content

Commit ccdafb2

Browse files
committed
[maven-release-plugin] prepare release axon-amqp-4.11.0
1 parent a6a3939 commit ccdafb2

File tree

11 files changed

+1115
-8
lines changed

11 files changed

+1115
-8
lines changed

amqp-axon-example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
<parent>
2020
<artifactId>axon-amqp-parent</artifactId>
2121
<groupId>org.axonframework.extensions.amqp</groupId>
22-
<version>4.11.0-SNAPSHOT</version>
22+
<version>4.11.0</version>
2323
</parent>
2424
<modelVersion>4.0.0</modelVersion>
2525

2626
<artifactId>amqp-axon-example</artifactId>
27-
<version>4.11.0-SNAPSHOT</version>
27+
<version>4.11.0</version>
2828

2929
<name>Axon Framework AMQP Extension - Spring Boot Example</name>
3030
<description>Example module for the AMQP Extension of Axon Framework</description>
Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright (c) 2010-2024. Axon Framework
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
18+
<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">
19+
<parent>
20+
<artifactId>axon-amqp-parent</artifactId>
21+
<groupId>org.axonframework.extensions.amqp</groupId>
22+
<version>4.11.0-SNAPSHOT</version>
23+
</parent>
24+
<modelVersion>4.0.0</modelVersion>
25+
26+
<artifactId>amqp-axon-example</artifactId>
27+
<version>4.11.0-SNAPSHOT</version>
28+
29+
<name>Axon Framework AMQP Extension - Spring Boot Example</name>
30+
<description>Example module for the AMQP Extension of Axon Framework</description>
31+
32+
<properties>
33+
<kotlin.version>1.9.21</kotlin.version>
34+
<kotlin-logging-jvm.version>3.0.5</kotlin-logging-jvm.version>
35+
<spring.boot.version>2.7.18</spring.boot.version>
36+
</properties>
37+
38+
<dependencies>
39+
<dependency>
40+
<groupId>org.springframework.boot</groupId>
41+
<artifactId>spring-boot-starter</artifactId>
42+
<version>${spring.boot.version}</version>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.springframework.boot</groupId>
46+
<artifactId>spring-boot-starter-amqp</artifactId>
47+
<version>${spring.boot.version}</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.axonframework</groupId>
51+
<artifactId>axon-spring-boot-starter</artifactId>
52+
<version>${axon.version}</version>
53+
<exclusions>
54+
<exclusion>
55+
<groupId>org.axonframework</groupId>
56+
<artifactId>axon-server-connector</artifactId>
57+
</exclusion>
58+
</exclusions>
59+
</dependency>
60+
<dependency>
61+
<groupId>org.axonframework.extensions.amqp</groupId>
62+
<artifactId>axon-amqp-spring-boot-starter</artifactId>
63+
<version>${project.version}</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.jetbrains.kotlin</groupId>
67+
<artifactId>kotlin-stdlib</artifactId>
68+
<version>${kotlin.version}</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.jetbrains.kotlin</groupId>
72+
<artifactId>kotlin-stdlib-jdk8</artifactId>
73+
<version>${kotlin.version}</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>io.github.microutils</groupId>
77+
<artifactId>kotlin-logging-jvm</artifactId>
78+
<version>${kotlin-logging-jvm.version}</version>
79+
<exclusions>
80+
<exclusion>
81+
<groupId>org.jetbrains.kotlin</groupId>
82+
<artifactId>kotlin-stdlib</artifactId>
83+
</exclusion>
84+
</exclusions>
85+
</dependency>
86+
</dependencies>
87+
88+
<build>
89+
<plugins>
90+
<plugin>
91+
<groupId>org.springframework.boot</groupId>
92+
<artifactId>spring-boot-maven-plugin</artifactId>
93+
<version>${spring.boot.version}</version>
94+
<configuration>
95+
<finalName>${project.artifactId}</finalName>
96+
</configuration>
97+
<executions>
98+
<execution>
99+
<goals>
100+
<goal>repackage</goal>
101+
</goals>
102+
</execution>
103+
</executions>
104+
</plugin>
105+
<plugin>
106+
<groupId>org.jetbrains.kotlin</groupId>
107+
<artifactId>kotlin-maven-plugin</artifactId>
108+
<version>${kotlin.version}</version>
109+
<configuration>
110+
<jvmTarget>1.8</jvmTarget>
111+
<args>
112+
<arg>-Xjsr305=strict</arg>
113+
</args>
114+
<compilerPlugins>
115+
<plugin>spring</plugin>
116+
<plugin>no-arg</plugin>
117+
<plugin>all-open</plugin>
118+
</compilerPlugins>
119+
</configuration>
120+
<executions>
121+
<execution>
122+
<id>compile</id>
123+
<phase>compile</phase>
124+
<goals>
125+
<goal>compile</goal>
126+
</goals>
127+
<configuration>
128+
<sourceDirs>
129+
<sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
130+
</sourceDirs>
131+
</configuration>
132+
</execution>
133+
<execution>
134+
<id>test-compile</id>
135+
<phase>test-compile</phase>
136+
<goals>
137+
<goal>test-compile</goal>
138+
</goals>
139+
<configuration>
140+
<sourceDirs>
141+
<sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
142+
</sourceDirs>
143+
</configuration>
144+
</execution>
145+
</executions>
146+
<dependencies>
147+
<dependency>
148+
<groupId>org.jetbrains.kotlin</groupId>
149+
<artifactId>kotlin-maven-allopen</artifactId>
150+
<version>${kotlin.version}</version>
151+
</dependency>
152+
<dependency>
153+
<groupId>org.jetbrains.kotlin</groupId>
154+
<artifactId>kotlin-maven-noarg</artifactId>
155+
<version>${kotlin.version}</version>
156+
</dependency>
157+
</dependencies>
158+
</plugin>
159+
<plugin>
160+
<groupId>org.apache.maven.plugins</groupId>
161+
<artifactId>maven-deploy-plugin</artifactId>
162+
<version>${maven-deploy.version}</version>
163+
<configuration>
164+
<skip>true</skip>
165+
</configuration>
166+
</plugin>
167+
</plugins>
168+
</build>
169+
170+
</project>

amqp-spring-boot-autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.axonframework.extensions.amqp</groupId>
2222
<artifactId>axon-amqp-parent</artifactId>
23-
<version>4.11.0-SNAPSHOT</version>
23+
<version>4.11.0</version>
2424
</parent>
2525

2626
<artifactId>axon-amqp-spring-boot-autoconfigure</artifactId>
Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright (c) 2010-2024. Axon Framework
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
18+
<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">
19+
<modelVersion>4.0.0</modelVersion>
20+
<parent>
21+
<groupId>org.axonframework.extensions.amqp</groupId>
22+
<artifactId>axon-amqp-parent</artifactId>
23+
<version>4.11.0-SNAPSHOT</version>
24+
</parent>
25+
26+
<artifactId>axon-amqp-spring-boot-autoconfigure</artifactId>
27+
28+
<name>Axon Framework AMQP Extension - Spring Boot Support</name>
29+
<description>
30+
Module providing support for auto configuration of the AMQP Axon Framework extension through Spring Boot.
31+
</description>
32+
33+
<packaging>jar</packaging>
34+
35+
<properties>
36+
<assertj.version>3.27.3</assertj.version>
37+
<jackson.version>2.16.0</jackson.version>
38+
<jackson-databind.version>2.16.0</jackson-databind.version>
39+
</properties>
40+
41+
<dependencies>
42+
<dependency>
43+
<groupId>org.assertj</groupId>
44+
<artifactId>assertj-core</artifactId>
45+
<version>${assertj.version}</version>
46+
<scope>test</scope>
47+
</dependency>
48+
49+
<dependency>
50+
<groupId>org.axonframework.extensions.amqp</groupId>
51+
<artifactId>axon-amqp</artifactId>
52+
<version>${project.version}</version>
53+
</dependency>
54+
55+
<dependency>
56+
<groupId>org.axonframework</groupId>
57+
<artifactId>axon-spring-boot-autoconfigure</artifactId>
58+
<version>${axon.version}</version>
59+
<optional>true</optional>
60+
<exclusions>
61+
<exclusion>
62+
<groupId>org.springframework</groupId>
63+
<artifactId>spring-web</artifactId>
64+
</exclusion>
65+
</exclusions>
66+
</dependency>
67+
68+
<dependency>
69+
<groupId>org.springframework.boot</groupId>
70+
<artifactId>spring-boot-configuration-processor</artifactId>
71+
<optional>true</optional>
72+
</dependency>
73+
74+
<dependency>
75+
<groupId>org.springframework.boot</groupId>
76+
<artifactId>spring-boot-starter-amqp</artifactId>
77+
<version>${spring.boot.version}</version>
78+
<optional>true</optional>
79+
</dependency>
80+
81+
<dependency>
82+
<groupId>org.springframework.boot</groupId>
83+
<artifactId>spring-boot-test-autoconfigure</artifactId>
84+
<version>${spring.boot.version}</version>
85+
<scope>test</scope>
86+
</dependency>
87+
88+
<dependency>
89+
<groupId>org.springframework.boot</groupId>
90+
<artifactId>spring-boot-starter</artifactId>
91+
<version>${spring.boot.version}</version>
92+
<optional>true</optional>
93+
<exclusions>
94+
<exclusion>
95+
<groupId>ch.qos.logback</groupId>
96+
<artifactId>logback-classic</artifactId>
97+
</exclusion>
98+
<exclusion>
99+
<groupId>org.apache.logging.log4j</groupId>
100+
<artifactId>log4j-to-slf4j</artifactId>
101+
</exclusion>
102+
</exclusions>
103+
</dependency>
104+
105+
<dependency>
106+
<groupId>com.fasterxml.jackson.core</groupId>
107+
<artifactId>jackson-databind</artifactId>
108+
<version>${jackson-databind.version}</version>
109+
<scope>test</scope>
110+
</dependency>
111+
<dependency>
112+
<groupId>com.fasterxml.jackson.datatype</groupId>
113+
<artifactId>jackson-datatype-jsr310</artifactId>
114+
<version>${jackson.version}</version>
115+
<scope>test</scope>
116+
</dependency>
117+
</dependencies>
118+
119+
<build>
120+
<plugins>
121+
<plugin>
122+
<artifactId>maven-jar-plugin</artifactId>
123+
<configuration>
124+
<archive>
125+
<manifestEntries>
126+
<Automatic-Module-Name>org.axonframework.extensions.amqp.springboot</Automatic-Module-Name>
127+
</manifestEntries>
128+
</archive>
129+
</configuration>
130+
</plugin>
131+
</plugins>
132+
</build>
133+
</project>

amqp-spring-boot-starter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<groupId>org.axonframework.extensions.amqp</groupId>
2828
<artifactId>axon-amqp-spring-boot-starter</artifactId>
29-
<version>4.11.0-SNAPSHOT</version>
29+
<version>4.11.0</version>
3030

3131
<name>Axon Framework AMQP Extension - Spring Boot Starter</name>
3232
<description>Spring Boot Starter module for the AMQP Extension of Axon Framework</description>
@@ -155,7 +155,7 @@
155155
<connection>scm:git:git://github.com/AxonFramework/extension-amqp.git</connection>
156156
<developerConnection>scm:git:git@github.com:AxonFramework/extension-amqp.git</developerConnection>
157157
<url>https://github.com/AxonFramework/extension-amqp</url>
158-
<tag>HEAD</tag>
158+
<tag>axon-amqp-4.11.0</tag>
159159
</scm>
160160

161161
</project>

0 commit comments

Comments
 (0)