pepper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.solven-eu.pepper</groupId>
<artifactId>pepper</artifactId>
<version>5.7</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>io.github.solven-eu.pepper</groupId>
<artifactId>pepper-aggregator</artifactId>
<version>5.7</version>
</parent>
<artifactId>pepper</artifactId>
<packaging>jar</packaging>
<!-- `name` is required by Sonatype-->
<name>${project.groupId}:${project.artifactId}</name>
<properties>
<automatic.module.name>eu.solven.pepper</automatic.module.name>
<jacoco.instruction.ratio>0.63</jacoco.instruction.ratio>
<jacoco.branch.ratio>0.50</jacoco.branch.ratio>
</properties>
<dependencies>
<dependency>
<!-- Used in PepperFileHelper -->
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<!-- Optional to make it easier to comply with Spring5 and Spring6 -->
<optional>true</optional>
</dependency>
<dependency>
<!-- Used by SetStaticMBean for @ManagedResource -->
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<!-- Optional to make it easier to comply with Spring5 and Spring6 -->
<optional>true</optional>
</dependency>
<dependency>
<!-- Provides an EventBus to diffuse Events to MetricsTowerControl -->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<!-- Optional as Guava is a quite large library -->
<optional>true</optional>
</dependency>
<!-- https://mvnrepository.com/artifact/ch.randelshofer/fastdoubleparser -->
<dependency>
<!--https://github.com/wrandelshofer/FastDoubleParser -->
<groupId>ch.randelshofer</groupId>
<artifactId>fastdoubleparser</artifactId>
<version>2.0.1</version>
<!-- Optional as this is used only by deprecated methods -->
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>3.0.1u2</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- Prevent javadoc complaining. Kept as optional, just like Guava -->
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<optional>true</optional>
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
<dependency>
<!-- Used by PepperJsonHelper -->
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<!--Jackson as many different versions, not 100% compatible -->
<!-- Hence, Pepper should not provide Jackson by default -->
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<!-- Some behavior depends on OS -->
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.solven-eu.pepper</groupId>
<artifactId>pepper-unittest</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- –Djacoco.skip=true -->
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<!-- LoggingMethodCallAnnotationMBeanExporter is a bunch of exception catching. Add * to hold anonymous classes -->
<exclude>eu/solven/pepper/spring/LoggingMethodCallAnnotationMBeanExporter*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>