cube
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.conexice</groupId> <artifactId>cube</artifactId> <version>1.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.conexice</groupId> <artifactId>cube</artifactId> <version>1.4.0</version> <packaging>pom</packaging> <name>Cube</name> <description>The cube platform</description> <url>https://cube.conexice.com</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Conexice Team</name> <email>team@conexice.com</email> </developer> </developers> <modules> <module>cube-codec</module> <module>cube-commons</module> <module>cube-message</module> <module>cube-api</module> <module>cube-runtime</module> </modules> <scm> <url>https://git.conexice.com</url> </scm> <properties> <jetbrains-annotations.version>24.1.0</jetbrains-annotations.version> <maven-checkstyle-plugin.version>3.3.1</maven-checkstyle-plugin.version> <central-publishing-maven-plugin.version>0.4.0</central-publishing-maven-plugin.version> <eclipse.version>4.26</eclipse.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> <vertx.version>4.5.8</vertx.version> <eclipse-wtp.version>4.21.0</eclipse-wtp.version> <jackson.version>2.17.1</jackson.version> <snappy.version>1.1.10.5</snappy.version> <proguard-core.version>9.1.1</proguard-core.version> <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> <slf4j.version>2.0.13</slf4j.version> <maven-spotless-plugin.version>2.43.0</maven-spotless-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit.version>5.10.2</junit.version> <typesafe.version>1.4.3</typesafe.version> <proguard-maven-plugin.version>2.6.0</proguard-maven-plugin.version> <json-path.version>2.9.0</json-path.version> <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version> <maven.compiler.source>17</maven.compiler.source> <maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version> <mockito.version>5.11.0</mockito.version> <revision>1.4.0</revision> <scram.version>2.1</scram.version> <maven.compiler.target>17</maven.compiler.target> <maven-pmd-plugin.version>3.21.2</maven-pmd-plugin.version> <checkstyle.version>10.12.1</checkstyle.version> <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> <changelist></changelist> <testcontainers.version>1.19.8</testcontainers.version> <postgresql.version>42.7.3</postgresql.version> <maven-flatten-plugin.version>1.6.0</maven-flatten-plugin.version> <awaitility.version>4.2.1</awaitility.version> <proguard-base.version>7.4.2</proguard-base.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <version>${vertx.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-web</artifactId> <version>${vertx.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-web-client</artifactId> <version>${vertx.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-pg-client</artifactId> <version>${vertx.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-sql-client-templates</artifactId> <version>${vertx.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-redis-client</artifactId> <version>${vertx.version}</version> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-kafka-client</artifactId> <version>${vertx.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.typesafe</groupId> <artifactId>config</artifactId> <version>${typesafe.version}</version> </dependency> <dependency> <groupId>com.ongres.scram</groupId> <artifactId>client</artifactId> <version>${scram.version}</version> </dependency> <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> <version>${snappy.version}</version> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>${jetbrains-annotations.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.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>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>${json-path.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>${awaitility.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>kafka</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>deploy</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <phase>deploy</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>${maven-flatten-plugin.version}</version> </plugin> <plugin> <groupId>com.github.wvengen</groupId> <artifactId>proguard-maven-plugin</artifactId> <version>${proguard-maven-plugin.version}</version> <executions> <execution> <id>proguard</id> <phase>package</phase> <goals> <goal>proguard</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.guardsquare</groupId> <artifactId>proguard-core</artifactId> <version>${proguard-core.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.guardsquare</groupId> <artifactId>proguard-base</artifactId> <version>${proguard-base.version}</version> <scope>runtime</scope> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${maven-spotless-plugin.version}</version> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>apply</goal> </goals> </execution> </executions> <configuration> <java> <toggleOffOn /> <importOrder> <file>.spotless/eclipse.importorder</file> </importOrder> <removeUnusedImports /> <eclipse> <version>${eclipse.version}</version> <file>.spotless/eclipse-formatter.xml</file> </eclipse> </java> <formats> <format> <toggleOffOn /> <includes> <include>**/*.xml</include> </includes> <eclipseWtp> <version>${eclipse-wtp.version}</version> <type>XML</type> <files> <file>.spotless/org.eclipse.wst.xml.core.prefs</file> </files> </eclipseWtp> </format> <format> <toggleOffOn /> <includes> <include>**/*.json</include> </includes> <eclipseWtp> <version>${eclipse-wtp.version}</version> <type>JSON</type> <files> <file>.spotless/org.eclipse.wst.json.core.prefs</file> </files> </eclipseWtp> </format> </formats> </configuration> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${checkstyle.version}</version> </dependency> </dependencies> <configuration> <inputEncoding>${project.build.sourceEncoding}</inputEncoding> <configLocation>.checkstyle/checkstyle.xml</configLocation> <suppressionsLocation>.checkstyle/checkstyle-suppressions.xml</suppressionsLocation> <violationSeverity>warning</violationSeverity> <failOnViolation>true</failOnViolation> <consoleOutput>true</consoleOutput> </configuration> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <version>${maven-pmd-plugin.version}</version> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <rulesets> <ruleset>.pmd/ruleset.xml</ruleset> </rulesets> <printFailingErrors>true</printFailingErrors> <linkXRef>false</linkXRef> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>central-release</id> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <executions> <execution> <id>default-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> </execution> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> <classifier>javadoc</classifier> <excludes> <exclude>**/*</exclude> </excludes> </configuration> </execution> <execution> <id>sources-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> <classifier>sources</classifier> <excludes> <exclude>**/*</exclude> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <tokenAuth>true</tokenAuth> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>central</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> </project>