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
58 changes: 58 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
version: 2.1

orbs:
onegini-build: onegini/onegini-build@3

shared: &shared
component_type: library
context: dev-context
executor:
name: onegini-build/maven-builder
tag: "17.0"
projects: core,test


tags_only: &tags_only
filters:
branches:
ignore: /.*/
tags:
only: /.*/

tags_and_branches_only: &tags_and_branches_only
filters:
branches:
only: /.*/
tags:
only: /.*/

workflows:
version: 2
library-workflow:
jobs:
- onegini-build/build-install:
name: build
<<: *shared
<<: *tags_and_branches_only
skip_tests: true

- onegini-build/test:
name: test
<<: *shared
<<: *tags_and_branches_only
requires:
- build

- onegini-build/deploy:
name: deploy
<<: *shared
<<: *tags_and_branches_only
requires:
- build
- test

- onegini-build/notify-released:
context: dev-context
<<: *tags_only
requires:
- deploy
2 changes: 1 addition & 1 deletion amqp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>axon</artifactId>
<groupId>org.axonframework</groupId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
38 changes: 2 additions & 36 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,51 +19,17 @@
<parent>
<groupId>org.axonframework</groupId>
<artifactId>axon</artifactId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>axon-core</artifactId>
<name>Axon Framework core</name>

<packaging>bundle</packaging>
<packaging>jar</packaging>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${felix.bundle.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Bundle-Description>High Performance and Scalability framework for Java application based on the
CQRS principles
</Bundle-Description>
<Bundle-Version>${project.version}</Bundle-Version>
<Export-Package>
org.axonframework.*
</Export-Package>
<Import-Package>
org.slf4j.*,
*;resolution:=optional
</Import-Package>
</instructions>
</configuration>
<executions>
<!--
This execution makes sure that the manifest is available
when the tests are executed
-->
<execution>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion distributed-commandbus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>axon</artifactId>
<groupId>org.axonframework</groupId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions documentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.axonframework</groupId>
<artifactId>axon</artifactId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>axon-documentation</artifactId>
Expand Down Expand Up @@ -128,4 +128,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
2 changes: 1 addition & 1 deletion incubator/cassandra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>axon</artifactId>
<groupId>org.axonframework</groupId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions incubator/google-app-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>axon</artifactId>
<groupId>org.axonframework</groupId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -84,4 +84,4 @@
<scope>test</scope>
</dependency>
</dependencies>
</project>
</project>
4 changes: 2 additions & 2 deletions incubator/redis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>axon</artifactId>
<groupId>org.axonframework</groupId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -68,4 +68,4 @@
<scope>test</scope>
</dependency>
</dependencies>
</project>
</project>
4 changes: 2 additions & 2 deletions integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>axon</artifactId>
<groupId>org.axonframework</groupId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -75,4 +75,4 @@
</exclusions>
</dependency>
</dependencies>
</project>
</project>
4 changes: 2 additions & 2 deletions integrationtests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>axon</artifactId>
<groupId>org.axonframework</groupId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -211,4 +211,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
2 changes: 1 addition & 1 deletion mongo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.axonframework</groupId>
<artifactId>axon</artifactId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>

<artifactId>axon-mongo</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mongo3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.axonframework</groupId>
<artifactId>axon</artifactId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>

<artifactId>axon-mongo3</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions monitoring-jmx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>axon</artifactId>
<groupId>org.axonframework</groupId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -59,4 +59,4 @@
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
</project>
31 changes: 8 additions & 23 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,15 @@

<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">

<parent>
<groupId>com.onegini</groupId>
<artifactId>og-parent</artifactId>
<version>62</version>
</parent>

<groupId>org.axonframework</groupId>
<artifactId>axon</artifactId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
<modules>
<module>core</module>
<module>integration</module>
Expand Down Expand Up @@ -117,7 +123,7 @@
<spring.version>6.1.11</spring.version>
<spring-security.version>6.3.1</spring-security.version>
<rabbitmq.version>5.19.0</rabbitmq.version>
<felix.bundle.plugin.version>2.4.0</felix.bundle.plugin.version>
<felix.bundle.plugin.version>6.0.0</felix.bundle.plugin.version>
<felix.version>4.2.1</felix.version>
<pax.exam.version>3.4.0</pax.exam.version>
<pax.url.version>1.6.0</pax.url.version>
Expand Down Expand Up @@ -381,27 +387,6 @@
</execution>
</executions>
</plugin>
<plugin>
<!-- just to make sure deployed artifacts are always built (and tested) using JDK 6 -->
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<id>enforce-java</id>
<phase>deploy</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>1.6</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
4 changes: 2 additions & 2 deletions quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.axonframework</groupId>
<artifactId>axon</artifactId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>

<artifactId>axon-quickstart</artifactId>
Expand Down Expand Up @@ -128,4 +128,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
4 changes: 2 additions & 2 deletions springmessaging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>axon</artifactId>
<groupId>org.axonframework</groupId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -74,4 +74,4 @@
</exclusions>
</dependency>
</dependencies>
</project>
</project>
2 changes: 1 addition & 1 deletion test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<artifactId>axon</artifactId>
<groupId>org.axonframework</groupId>
<version>2.4.7-SNAPSHOT</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down