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</groupId> | <groupId>io.dropwizard</groupId> | |||
<artifactId>dropwizard-parent</artifactId> | <artifactId>dropwizard-parent</artifactId> | |||
<version>4.0.15</version> | <version>5.0.0-rc.4</version> | |||
<relativePath>../dropwizard-parent</relativePath> | <relativePath>../dropwizard-parent</relativePath> | |||
</parent> | </parent> | |||
<artifactId>dropwizard-auth</artifactId> | <artifactId>dropwizard-auth</artifactId> | |||
<name>Dropwizard Authentication</name> | <name>Dropwizard Authentication</name> | |||
<properties> | <properties> | |||
<module.name>io.dropwizard.auth</module.name> | <module.name>io.dropwizard.auth</module.name> | |||
</properties> | </properties> | |||
skipping to change at line 37 | skipping to change at line 37 | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>io.dropwizard.metrics</groupId> | <groupId>io.dropwizard.metrics</groupId> | |||
<artifactId>metrics-caffeine</artifactId> | <artifactId>metrics-caffeine</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>com.github.ben-manes.caffeine</groupId> | <groupId>com.github.ben-manes.caffeine</groupId> | |||
<artifactId>caffeine</artifactId> | <artifactId>caffeine</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.checkerframework</groupId> | <groupId>org.jspecify</groupId> | |||
<artifactId>checker-qual</artifactId> | <artifactId>jspecify</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>jakarta.annotation</groupId> | <groupId>jakarta.annotation</groupId> | |||
<artifactId>jakarta.annotation-api</artifactId> | <artifactId>jakarta.annotation-api</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>jakarta.ws.rs</groupId> | <groupId>jakarta.ws.rs</groupId> | |||
<artifactId>jakarta.ws.rs-api</artifactId> | <artifactId>jakarta.ws.rs-api</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
skipping to change at line 95 | skipping to change at line 95 | |||
<groupId>org.eclipse.jetty.toolchain</groupId> | <groupId>org.eclipse.jetty.toolchain</groupId> | |||
<artifactId>jetty-jakarta-servlet-api</artifactId> | <artifactId>jetty-jakarta-servlet-api</artifactId> | |||
</exclusion> | </exclusion> | |||
</exclusions> | </exclusions> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>jakarta.servlet</groupId> | <groupId>jakarta.servlet</groupId> | |||
<artifactId>jakarta.servlet-api</artifactId> | <artifactId>jakarta.servlet-api</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.eclipse.jetty.ee10</groupId> | ||||
<artifactId>jetty-ee10-servlet</artifactId> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>org.glassfish.jersey.test-framework</groupId> | <groupId>org.glassfish.jersey.test-framework</groupId> | |||
<artifactId>jersey-test-framework-core</artifactId> | <artifactId>jersey-test-framework-core</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
<exclusions> | <exclusions> | |||
<exclusion> | <exclusion> | |||
<groupId>org.glassfish.hk2.external</groupId> | <groupId>org.glassfish.hk2.external</groupId> | |||
<artifactId>jakarta.inject</artifactId> | <artifactId>jakarta.inject</artifactId> | |||
</exclusion> | </exclusion> | |||
</exclusions> | </exclusions> | |||
</dependency> | </dependency> | |||
skipping to change at line 142 | skipping to change at line 146 | |||
<groupId>org.mockito</groupId> | <groupId>org.mockito</groupId> | |||
<artifactId>mockito-core</artifactId> | <artifactId>mockito-core</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.mockito</groupId> | <groupId>org.mockito</groupId> | |||
<artifactId>mockito-junit-jupiter</artifactId> | <artifactId>mockito-junit-jupiter</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>com.google.guava</groupId> | <groupId>org.glassfish.jersey.containers</groupId> | |||
<artifactId>guava-testlib</artifactId> | <artifactId>jersey-container-servlet-core</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>com.fasterxml.jackson.core</groupId> | <groupId>com.fasterxml.jackson.core</groupId> | |||
<artifactId>jackson-annotations</artifactId> | <artifactId>jackson-annotations</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>io.dropwizard</groupId> | <groupId>io.dropwizard</groupId> | |||
<artifactId>dropwizard-logging</artifactId> | <artifactId>dropwizard-logging</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.glassfish.jersey.containers</groupId> | <groupId>com.google.guava</groupId> | |||
<artifactId>jersey-container-servlet-core</artifactId> | <artifactId>guava-testlib</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
<exclusions> | ||||
<exclusion> | ||||
<groupId>org.glassfish.hk2.external</groupId> | ||||
<artifactId>jakarta.inject</artifactId> | ||||
</exclusion> | ||||
</exclusions> | ||||
</dependency> | </dependency> | |||
</dependencies> | </dependencies> | |||
</project> | </project> | |||
End of changes. 6 change blocks. | ||||
13 lines changed or deleted | 11 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/ |