clusterbench-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.jboss.test</groupId>
<artifactId>clusterbench-common</artifactId>
<version>13.0.0.Final</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright The ClusterBench Authors
~ SPDX-License-Identifier: Apache-2.0
-->
<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>org.jboss.test</groupId>
<artifactId>clusterbench</artifactId>
<version>13.0.0.Final</version>
</parent>
<artifactId>clusterbench-common</artifactId>
<version>13.0.0.Final</version>
<packaging>jar</packaging>
<name>ClusterBench: Common</name>
<description>Module containing Jakarta version-agnostic base class (POJO) implementations of SerialBean object and base interfaces and classes for EJBs.</description>
<dependencies>
<!-- Ensure there are no jakarta.* dependencies here! -->
<!-- Test dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>