dropwizard-vavr
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.dropwizard.modules</groupId> <artifactId>dropwizard-vavr</artifactId> <version>4.0.0-2</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.dropwizard.modules</groupId> <artifactId>module-parent</artifactId> <version>4.0.0-rc.2</version> </parent> <groupId>io.dropwizard.modules</groupId> <artifactId>dropwizard-vavr</artifactId> <version>4.0.0-2</version> <packaging>jar</packaging> <name>Dropwizard Vavr Bundle</name> <description>Addon bundle for Dropwizard to support Vavr</description> <distributionManagement> <site> <id>dropwizard-vavr</id> <url>https://dropwizard.github.io/dropwizard-vavr/${project.version}</url> </site> </distributionManagement> <developers> <developer> <id>j.schalanda</id> <name>Jochen Schalanda</name> <email>jochen@schalanda.name</email> </developer> </developers> <properties> <sonar.projectKey>dropwizard_dropwizard-vavr</sonar.projectKey> <vavr.version>0.10.3</vavr.version> </properties> <dependencies> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-core</artifactId> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-jdbi3</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.vavr</groupId> <artifactId>vavr-jackson</artifactId> <version>${vavr.version}</version> </dependency> <dependency> <groupId>io.vavr</groupId> <artifactId>vavr-beanvalidation2</artifactId> <version>0.10.0</version> </dependency> <dependency> <groupId>org.jdbi</groupId> <artifactId>jdbi3-vavr</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.12</version> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.3.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <configuration> <skipDeploy>true</skipDeploy> </configuration> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <configuration> <path>${project.version}</path> <message>Creating site for ${project.name} ${project.version}</message> <merge>true</merge> <noJekyll>true</noJekyll> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>site-deploy</phase> </execution> </executions> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <show>public</show> <quiet>true</quiet> </configuration> <reportSets> <reportSet> <id>html</id> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <scm> <tag>dropwizard-vavr-4.0.0-2</tag> </scm> </project>