memq
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.appform.memq</groupId> <artifactId>memq</artifactId> <version>0.1.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.appform.memq</groupId> <artifactId>memq</artifactId> <packaging>pom</packaging> <version>0.1.6</version> <name>Mem Q Actors</name> <url>https://github.com/appform-io/memq</url> <description>In memory partitioned actor system</description> <inceptionYear>2023</inceptionYear> <modules> <module>memq-actor</module> <module>memq-dw-bundle</module> </modules> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <connection>scm:git:https://github.com/appform-io/memq.git</connection> <developerConnection>scm:git:https://github.com/appform-io/memq.git</developerConnection> <tag>HEAD</tag> <url>https://github.com/appform-io/memq</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/appform-io/memq/issues</url> </issueManagement> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>tusharmndr</id> <name>Tushar Mandar</name> <email>tusharmndr@gmail.com</email> </developer> <developer> <id>santanusinha</id> <name>Santanu Sinha</name> <email>santanu.sinha@gmail.com</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.version>3.8.0</maven.compiler.version> <java.version>17</java.version> <lombok.version>1.18.24</lombok.version> <slf4j-api.version>1.7.36</slf4j-api.version> <junit.version>5.8.2</junit.version> <jakarta.validation.version>2.0.2</jakarta.validation.version> <awaitility.version>4.2.0</awaitility.version> <guice.version>5.1.0</guice.version> <dw-guicey.version>5.5.0</dw-guicey.version> <curator.version>5.2.1</curator.version> <metrics-core.version>4.2.9</metrics-core.version> <logback.version>1.2.11</logback.version> <failsafe.version>2.4.4</failsafe.version> <aspectj.version>1.9.9.1</aspectj.version> <junit.version>5.8.2</junit.version> <mockito.version>4.4.0</mockito.version> <wiremock.version>2.33.2</wiremock.version> <maven.deploy.skip>false</maven.deploy.skip> <sonar.exclusions> **/*.hbs, **/*.js, **/*.css, **/model/**, **/models/**, </sonar.exclusions> <guava.version>33.0.0-jre</guava.version> <commons-lang3.version>3.12.0</commons-lang3.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> <version>6.0.17.Final</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> <version>${jakarta.validation.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <version>${awaitility.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.8</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> <configuration> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <configuration> <doclint>all,-missing</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> <stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <property> <name>release</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <useAgent>true</useAgent> <executable>gpg2</executable> <!-- Run something like 'gpg2 -ab out' to cache the creds on agent before running if needed --> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <!-- The following are required for dns cache manipulator. Ref: https://github.com/alibaba/java-dns-cache-manipulator#jvm-settings-for-java-16 --> <profile> <id>add-java-open-options-for-jdk16+</id> <activation> <jdk>[16,)</jdk> </activation> <properties> <argLine> --add-opens java.base/java.net=ALL-UNNAMED --add-opens java.base/sun.net=ALL-UNNAMED </argLine> </properties> </profile> </profiles> </project>