springlets-test-autoconfigure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.springlets</groupId>
<artifactId>springlets-test-autoconfigure</artifactId>
<version>1.2.0.RELEASE</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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.springlets</groupId>
<artifactId>springlets-parent</artifactId>
<version>1.2.0.RELEASE</version>
</parent>
<artifactId>springlets-test-autoconfigure</artifactId>
<packaging>jar</packaging>
<name>Springlets Test AutoConfiguration</name>
<description>Springlets tests auto-configurators for Spring Boot adding new test slice annotation taking into account the Springlets libraries</description>
<organization>
<name>DISID Corporation</name>
<url>http://www.disid.com</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<!--
= About the dependencies
ORDER CRITERIA:
* Three dependency groups: first spring dependencies, next own dependencies and finally the external ones.
* Inside a group: alphabetical order, ordering first by groupId, then by artifactId.
OPTIONAL:
* All the dependencies MUST BE optional = true, the starter will include the needed libraries
STARTERS:
* Never include dependencies to Spring Boot Starters, instead include each needed library
-->
<!-- Spring dependencies -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
</dependency>
<!-- Springlets dependencies -->
<dependency>
<groupId>io.springlets</groupId>
<artifactId>springlets-data-commons</artifactId>
</dependency>
<dependency>
<groupId>io.springlets</groupId>
<artifactId>springlets-web</artifactId>
</dependency>
<!-- 3rd party dependencies -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
</dependencies>
</project>