pom.xml | pom.xml | |||
---|---|---|---|---|
<?xml version="1.0" encoding="UTF-8"?> | <?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/P OM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | <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/P OM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | |||
<parent> | <parent> | |||
<groupId>io.dropwizard.metrics</groupId> | <groupId>io.dropwizard.metrics</groupId> | |||
<artifactId>metrics-parent</artifactId> | <artifactId>metrics-parent</artifactId> | |||
<version>4.0.4</version> | <version>4.0.5</version> | |||
</parent> | </parent> | |||
<artifactId>metrics-jcache</artifactId> | <artifactId>metrics-jcache</artifactId> | |||
<name>Metrics Integration for JCache</name> | <name>Metrics Integration for JCache</name> | |||
<packaging>bundle</packaging> | <packaging>bundle</packaging> | |||
<description> | <description> | |||
Metrics Integration for JCache, JSR 107 standard for caching. | Metrics Integration for JCache, JSR 107 standard for caching. | |||
Uses the CacheStatisticsMXBean provided statistics. | Uses the CacheStatisticsMXBean provided statistics. | |||
</description> | </description> | |||
<properties> | ||||
<javaModuleName>com.codahale.metrics.jcache</javaModuleName> | ||||
<cache-api.version>1.0.0</cache-api.version> | ||||
<ehcache3.version>3.4.0</ehcache3.version> | ||||
</properties> | ||||
<profiles> | <profiles> | |||
<profile> | <profile> | |||
<id>jdk10</id> | <id>jdk10</id> | |||
<activation> | <activation> | |||
<jdk>10</jdk> | <jdk>10</jdk> | |||
</activation> | </activation> | |||
<build> | <build> | |||
<plugins> | <plugins> | |||
<plugin> | <plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | <groupId>org.apache.maven.plugins</groupId> | |||
skipping to change at line 74 | skipping to change at line 80 | |||
<groupId>io.dropwizard.metrics</groupId> | <groupId>io.dropwizard.metrics</groupId> | |||
<artifactId>metrics-core</artifactId> | <artifactId>metrics-core</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>io.dropwizard.metrics</groupId> | <groupId>io.dropwizard.metrics</groupId> | |||
<artifactId>metrics-jvm</artifactId> | <artifactId>metrics-jvm</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>javax.cache</groupId> | <groupId>javax.cache</groupId> | |||
<artifactId>cache-api</artifactId> | <artifactId>cache-api</artifactId> | |||
<version>${cache-api.version}</version> | ||||
<scope>provided</scope> | <scope>provided</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.ehcache</groupId> | <groupId>org.ehcache</groupId> | |||
<artifactId>ehcache</artifactId> | <artifactId>ehcache</artifactId> | |||
<version>${ehcache3.version}</version> | ||||
<exclusions> | ||||
<exclusion> | ||||
<groupId>org.slf4j</groupId> | ||||
<artifactId>slf4j-api</artifactId> | ||||
</exclusion> | ||||
</exclusions> | ||||
<scope>test</scope> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>javax.xml.bind</groupId> | ||||
<artifactId>jaxb-api</artifactId> | ||||
<version>2.3.0</version> | ||||
<scope>test</scope> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>org.glassfish.jaxb</groupId> | ||||
<artifactId>jaxb-runtime</artifactId> | ||||
<version>2.3.0</version> | ||||
<scope>test</scope> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>javax.activation</groupId> | ||||
<artifactId>activation</artifactId> | ||||
<version>1.1.1</version> | ||||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
</dependencies> | </dependencies> | |||
</project> | </project> | |||
End of changes. 4 change blocks. | ||||
1 lines changed or deleted | 33 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |