vlingo-xoom
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.vlingo</groupId> <artifactId>vlingo-xoom</artifactId> <version>1.7.5</version> </dependency>
<project 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.vlingo</groupId> <artifactId>vlingo-xoom</artifactId> <version>1.7.5</version> <description>The VLINGO XOOM Xoom provides a JVM microframework for the VLINGO XOOM Platform that helps in building high-performance reactive microservices.</description> <name>vlingo-xoom</name> <url>https://github.com/vlingo/xoom-turbo</url> <licenses> <license> <name>Mozilla Public License 2.0</name> <url>https://mozilla.org/MPL/2.0/</url> </license> </licenses> <developers> <developer> <id>vlingo</id> <name>VLINGO XOOM Team</name> <email>info@vlingo.io</email> <organization>vlingo</organization> <organizationUrl>https://vlingo.io/about/#community</organizationUrl> </developer> <developer> <name>Danilo Ambrosio</name> <email>danilo.ambrosio@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/vlingo/xoom-turbo.git</connection> <developerConnection>scm:git:ssh://github.com/vlingo/xoom-turbo.git</developerConnection> <url>http://github.com/vlingo/xoom-turbo/tree/master</url> </scm> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <distributionManagement> <relocation> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-turbo</artifactId> </relocation> </distributionManagement> <dependencies> <dependency> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-http</artifactId> <version>1.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-actors</artifactId> <version>1.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-symbio</artifactId> <version>1.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-symbio-jdbc</artifactId> <version>1.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-lattice</artifactId> <version>1.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-lattice-exchange-rabbitmq</artifactId> <version>1.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.auto.service</groupId> <artifactId>auto-service</artifactId> <version>1.0-rc5</version> <optional>true</optional> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.30</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.7</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.3.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.wix</groupId> <artifactId>wix-embedded-mysql</artifactId> <version>4.2.0</version> </dependency> <dependency> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-build-plugins</artifactId> <version>1.7.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> <version>62.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</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.0.0</version> <configuration> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <excludes> <exclude>**/xoom-turbo.properties</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>8</source> <target>8</target> </configuration> <executions> <execution> <id>test-compile</id> <goals> <goal>testCompile</goal> </goals> <configuration> <compilerArgs> <arg>-parameters</arg> </compilerArgs> <annotationProcessorPaths> <path> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-turbo</artifactId> <version>${project.version}</version> </path> </annotationProcessorPaths> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>db-start</id> <phase>test-compile</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>io.vlingo.xoom.turbo.storage.EmbeddedDatabaseInitializer</mainClass> <cleanupDaemonThreads>false</cleanupDaemonThreads> </configuration> </execution> <execution> <id>db-close</id> <phase>post-integration-test</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>io.vlingo.xoom.turbo.storage.EmbeddedDatabaseStopper</mainClass> <cleanupDaemonThreads>false</cleanupDaemonThreads> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>ossrh-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <releases><enabled>false</enabled></releases> <snapshots><enabled>true</enabled></snapshots> </repository> </repositories> <profiles> <profile> <id>sign-artifacts</id> <activation> <property> <name>signArtifacts</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> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>sonatype</id> <activation> <property> <name>useSonatype</name> <value>true</value> </property> </activation> <distributionManagement> <relocation> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-turbo</artifactId> </relocation> <snapshotRepository> <id>central-repository-ossrh</id> <name>Snapshots Repository OSSRH</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>central-repository-ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>github</id> <activation> <property> <name>useGitHubPackages</name> <value>true</value> </property> </activation> <distributionManagement> <relocation> <groupId>io.vlingo.xoom</groupId> <artifactId>xoom-turbo</artifactId> </relocation> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/vlingo/xoom-platform</url> </repository> </distributionManagement> </profile> <profile> <!-- We only need GitHub packages during releases as syncing to central is too slow. --> <id>github-releases</id> <repositories> <repository> <id>github</id> <name>GitHub Packages</name> <url>https://maven.pkg.github.com/vlingo/xoom-platform</url> </repository> </repositories> </profile> </profiles> </project>