cibseven-mockito
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.cibseven.community.mockito</groupId>
<artifactId>cibseven-mockito</artifactId>
<version>1.1.0</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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.cibseven.community</groupId>
<artifactId>release-parent</artifactId>
<version>1.0.0</version>
<relativePath />
</parent>
<groupId>org.cibseven.community.mockito</groupId>
<artifactId>cibseven-mockito</artifactId>
<version>1.1.0</version>
<properties>
<!-- Avoid the message "[WARNING] Using platform encoding (UTF-8 actually) ... also for the failsafe plugin -->
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<version.java>17</version.java>
<java.version>${version.java}</java.version>
<cibseven.version>1.1.0</cibseven.version>
<cibseven-bpm-data.version>1.0.0</cibseven-bpm-data.version>
<commons-lang3.version>3.17.0</commons-lang3.version>
<slf4j.version>2.0.16</slf4j.version>
<spring.version>6.1.14</spring.version>
<!-- test tools -->
<assertj.version>3.27.2</assertj.version>
<mockito.version>5.15.2</mockito.version>
<hamcrest.version>3.0</hamcrest.version>
<!-- plugins -->
<asciidoctor-maven-plugin.version>2.2.2</asciidoctor-maven-plugin.version>
<asciidoctorj.version>2.5.3</asciidoctorj.version>
<jruby.version>1.7.26</jruby.version>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
<!-- disable javadoc linter for JDK8 to not fail on incomplete javadoc -->
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.cibseven.bpm</groupId>
<artifactId>cibseven-bom</artifactId>
<version>${cibseven.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.cibseven.bpm</groupId>
<artifactId>cibseven-engine</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.cibseven.community.data</groupId>
<artifactId>cibseven-bpm-data</artifactId>
<version>${cibseven-bpm-data.version}</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.13.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.13.2</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>provided</scope>
<version>2.3.232</version>
</dependency>
</dependencies>
<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>${version.java}</source>
<target>${version.java}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>17</source>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:cibseven-community-hub/cibseven-mockito.git</connection>
<url>scm:git:git@github.com:cibseven-community-hub/cibseven-mockito.git</url>
<developerConnection>scm:git:git@github.com:cibseven-community-hub/cibseven-mockito.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>cibseven.org</id>
<name>CIB seven Community</name>
<email>community@cibseven.org</email>
<url>http://cibseven.org</url>
<organization>cibseven.org</organization>
<organizationUrl>http://cibseven.org</organizationUrl>
</developer>
<developer>
<name>Jan Galinski</name>
<organization>Holisticon AG</organization>
<organizationUrl>http://holisticon.de</organizationUrl>
</developer>
<developer>
<name>Simon Zambrovski</name>
<organization>Holisticon AG</organization>
<organizationUrl>http://holisticon.de</organizationUrl>
</developer>
</developers>
<repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
<url>https://artifacts.cibseven.org/repository/public</url>
</repository>
</repositories>
</project>