cluecumber-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.trivago.rta</groupId> <artifactId>cluecumber-core</artifactId> <version>3.11.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.trivago.rta</groupId> <artifactId>cluecumber-parent</artifactId> <version>3.11.1</version> </parent> <artifactId>cluecumber-core</artifactId> <version>3.11.1</version> <name>Cluecumber Core</name> <description>The Cluecumber core component for the JVM.</description> <inceptionYear>2022</inceptionYear> <organization> <name>trivago N.V.</name> <url>https://www.trivago.de</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <name>Benjamin Bischoff</name> <url>https://www.softwaretester.blog</url> <organization>trivago N.V.</organization> <organizationUrl>https://www.trivago.de</organizationUrl> <roles> <role>Test Automation Engineer</role> </roles> </developer> </developers> <properties> <maven.compiler.release>11</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.trivago.rta</groupId> <artifactId>cluecumber-engine</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <failOnWarnings>false</failOnWarnings> </configuration> </plugin> </plugins> </build> </project>