ekino-spring-boot-starter-errors
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ekino.oss.spring</groupId> <artifactId>ekino-spring-boot-starter-errors</artifactId> <version>9.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.ekino.oss.spring</groupId> <artifactId>ekino-spring-boot-starter-errors</artifactId> <version>9.0.0</version> <name>ekino-spring-boot-starter-errors</name> <description>ekino-spring-boot-starter-errors configure your Spring Boot app in order to have well formatted error response in json.</description> <url>https://github.com/ekino/spring-boot-starter-errors</url> <organization> <name>ekino</name> <url>https://www.ekino.com/</url> </organization> <licenses> <license> <name>MIT License (MIT)</name> <url>https://opensource.org/licenses/mit-license</url> </license> </licenses> <developers> <developer> <name>Clément Stoquart</name> <email>clement.stoquart@ekino.com</email> <organization>ekino</organization> <organizationUrl>https://www.ekino.com/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/ekino/spring-boot-starter-errors.git</connection> <developerConnection>scm:git:ssh://github.com:ekino/spring-boot-starter-errors.git</developerConnection> <url>https://github.com/ekino/spring-boot-starter-errors</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>3.0.3</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <scope>compile</scope> <exclusions> <exclusion> <artifactId>mockito-core</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>assertj-core</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>mockito-core</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>assertj-core</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>mockito-core</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>assertj-core</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>mockito-core</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>assertj-core</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>