convex-integration
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-integration</artifactId>
<version>0.8.2</version>
</dependency><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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>convex-integration</artifactId>
<name>Convex Integration</name>
<description>
Module intented primarily to implement integration testing across
different Convex artifacts
</description>
<parent>
<groupId>world.convex</groupId>
<artifactId>convex</artifactId>
<version>0.8.2</version>
</parent>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.7.1</version>
<configuration>
<archive>
<manifest>
<mainClass>convex.main.Main</mainClass>
<!-- Used to add Maven implementation version -->
<addDefaultImplementationEntries>
true
</addDefaultImplementationEntries>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<outputDirectory>${project.build.directory}</outputDirectory>
<!-- This creates full convex.jar. We don't want it attached, just built -->
<attach>false</attach>
<appendAssemblyId>false</appendAssemblyId>
<finalName>convex</finalName>
</configuration>
<executions>
<execution>
<id>create-archive</id>
<!-- Use install phase so it doesn't go in deployed Maven artifacts' -->
<phase>install</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-peer</artifactId>
<version>${convex.version}</version>
</dependency>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-core</artifactId>
<version>${convex.version}</version>
</dependency>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-restapi</artifactId>
<version>${convex.version}</version>
</dependency>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-java</artifactId>
<version>${convex.version}</version>
</dependency>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-cli</artifactId>
<version>${convex.version}</version>
</dependency>
<dependency>
<groupId>world.convex</groupId>
<artifactId>convex-gui</artifactId>
<version>${convex.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
<!-- optional becuase not needed by projects depending on this -->
<optional>true</optional>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<!-- optional becuase not needed by projects depending on this -->
<optional>true</optional>
</dependency>
<!-- TEST DEPENDENCIES -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>