dynamo-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.dynamoframework</groupId> <artifactId>dynamo-test</artifactId> <version>4.0.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> <artifactId>dynamo-test</artifactId> <packaging>jar</packaging> <name>Supporting test classes</name> <description>Dynamo Framework supporting test classes project.</description> <url>https://www.dynamoframework.org</url> <parent> <groupId>org.dynamoframework</groupId> <artifactId>dynamo-parent</artifactId> <version>4.0.0</version> </parent> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>dynamo-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <configuration> <stagingDirectory>../target/staging/maven</stagingDirectory> </configuration> </plugin> <plugin> <groupId>com.ragedunicorn.tools.maven</groupId> <artifactId>github-release-maven-plugin</artifactId> <version>1.0.7</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>