restx-core-shell
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.restx</groupId>
<artifactId>restx-core-shell</artifactId>
<version>1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.restx</groupId>
<artifactId>restx-shell-parent</artifactId>
<version>1.0</version>
</parent>
<artifactId>restx-core-shell</artifactId>
<name>restx-core-shell</name>
<dependencies>
<dependency>
<groupId>io.restx</groupId>
<artifactId>restx-factory</artifactId>
</dependency>
<!--
Remove this dependency in the future by extracting required stuff in shared lib between restx-shell and restx
See https://github.com/restx/restx/issues/97
-->
<dependency>
<groupId>io.restx</groupId>
<artifactId>restx-core</artifactId>
</dependency>
<dependency>
<groupId>io.restx</groupId>
<artifactId>restx-shell</artifactId>
</dependency>
<dependency>
<groupId>io.restx</groupId>
<artifactId>restx-shell-manager</artifactId>
</dependency>
<dependency>
<groupId>io.restx</groupId>
<artifactId>restx-build</artifactId>
</dependency>
<dependency>
<groupId>org.apache.ivy</groupId>
<artifactId>ivy</artifactId>
</dependency>
<dependency>
<groupId>org.mindrot</groupId>
<artifactId>jbcrypt</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-verifier</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<!-- For parallel Parameterized tests execution -->
<groupId>com.googlecode.junit-toolbox</groupId>
<artifactId>junit-toolbox</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<restxVersion>${restx.version}</restxVersion>
<maxParallelTestThreads>10</maxParallelTestThreads>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>