runtimes-java-core-runtime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.redhat.insights</groupId> <artifactId>runtimes-java-core-runtime</artifactId> <version>2.0.4</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>com.redhat.insights</groupId> <artifactId>runtimes-java</artifactId> <version>2.0.4</version> </parent> <artifactId>runtimes-java-core-runtime</artifactId> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>runtimes-java-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jspecify</groupId> <artifactId>jspecify</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>runtimes-java-api</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </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> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.smallrye.reactive</groupId> <artifactId>smallrye-mutiny-vertx-web</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>uk.org.webcompere</groupId> <artifactId>system-stubs-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless-maven-plugin.version}</version> <configuration> <skip>${skip.spotless}</skip> <!-- optional: limit format enforcement to just the files changed by this feature branch --> <ratchetFrom>origin/main</ratchetFrom> <formats> <!-- you can define as many formats as you want, each is independent --> <format> <!-- define the files to apply to --> <includes> <include>*.md</include> <include>.gitignore</include> </includes> <!-- define the steps to apply to those files --> <trimTrailingWhitespace></trimTrailingWhitespace> <endWithNewline></endWithNewline> <indent> <tabs>true</tabs> <spacesPerTab>4</spacesPerTab> </indent> </format> </formats> <!-- define a language-specific format --> <java> <!-- no need to specify files, inferred automatically, but you can if you want --> <!-- apply a specific flavor of google-java-format and reflow long strings --> <googleJavaFormat> <version>${google-java-format.version}</version> <style>GOOGLE</style> <reflowLongStrings>true</reflowLongStrings> <groupArtifact>com.google.googlejavaformat:google-java-format</groupArtifact> </googleJavaFormat> <!-- make sure every file has the following copyright header. optionally, Spotless can set copyright years by digging through git history (see "license" section below) --> <licenseHeader> <content>/* Copyright (C) Red Hat $YEAR */</content> <!-- or <file>${project.basedir}/license-header</file> --> </licenseHeader> </java> <pom> <includes> <include>pom.xml</include> </includes> <sortPom></sortPom> </pom> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>compile</phase> </execution> </executions> </plugin> </plugins> </build> </project>