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>2.0.2</version> | <version>2.0.3</version> | |||
<relativePath>../dropwizard-parent</relativePath> | <relativePath>../dropwizard-parent</relativePath> | |||
</parent> | </parent> | |||
<artifactId>dropwizard-configuration</artifactId> | <artifactId>dropwizard-configuration</artifactId> | |||
<name>Dropwizard Configuration Support</name> | <name>Dropwizard Configuration Support</name> | |||
<dependencies> | <dependencies> | |||
<dependency> | <dependency> | |||
<groupId>io.dropwizard</groupId> | <groupId>io.dropwizard</groupId> | |||
<artifactId>dropwizard-jackson</artifactId> | <artifactId>dropwizard-jackson</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>io.dropwizard</groupId> | <groupId>io.dropwizard</groupId> | |||
<artifactId>dropwizard-util</artifactId> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>io.dropwizard</groupId> | ||||
<artifactId>dropwizard-validation</artifactId> | <artifactId>dropwizard-validation</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>com.fasterxml.jackson.core</groupId> | ||||
<artifactId>jackson-annotations</artifactId> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>com.fasterxml.jackson.core</groupId> | ||||
<artifactId>jackson-core</artifactId> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>com.fasterxml.jackson.core</groupId> | ||||
<artifactId>jackson-databind</artifactId> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>com.fasterxml.jackson.dataformat</groupId> | <groupId>com.fasterxml.jackson.dataformat</groupId> | |||
<artifactId>jackson-dataformat-yaml</artifactId> | <artifactId>jackson-dataformat-yaml</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.apache.commons</groupId> | <groupId>com.google.code.findbugs</groupId> | |||
<artifactId>commons-lang3</artifactId> | <artifactId>jsr305</artifactId> | |||
</dependency> | ||||
<dependency> | ||||
<groupId>jakarta.validation</groupId> | ||||
<artifactId>jakarta.validation-api</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.apache.commons</groupId> | <groupId>org.apache.commons</groupId> | |||
<artifactId>commons-text</artifactId> | <artifactId>commons-text</artifactId> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.junit.jupiter</groupId> | <groupId>org.junit.jupiter</groupId> | |||
<artifactId>junit-jupiter</artifactId> | <artifactId>junit-jupiter</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.assertj</groupId> | <groupId>org.junit.jupiter</groupId> | |||
<artifactId>assertj-core</artifactId> | <artifactId>junit-jupiter-api</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.mockito</groupId> | <groupId>org.assertj</groupId> | |||
<artifactId>mockito-core</artifactId> | <artifactId>assertj-core</artifactId> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
</dependencies> | </dependencies> | |||
<build> | <build> | |||
<plugins> | <plugins> | |||
<plugin> | <plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | <groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-surefire-plugin</artifactId> | <artifactId>maven-surefire-plugin</artifactId> | |||
<!-- Required for tests related to environment variables -- > | <!-- Required for tests related to environment variables -- > | |||
End of changes. 6 change blocks. | ||||
7 lines changed or deleted | 27 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/ |