spring-safe-setup
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.zg2pro</groupId>
<artifactId>spring-safe-setup</artifactId>
<version>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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.zg2pro</groupId>
<artifactId>zg2pro-spring-core</artifactId>
<version>0.4</version>
</parent>
<groupId>com.github.zg2pro</groupId>
<artifactId>spring-safe-setup</artifactId>
<name>spring-safe-setup</name>
<description>A library of tools to make safety checks upon build or startup of your spring app</description>
<packaging>jar</packaging>
<version>0.2</version>
<url>https://github.com/zg2pro/spring-safe-setup</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Gregory Anne</name>
<email>englishblazere@free.fr</email>
<url>https://github.com/zg2pro</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/zg2pro/spring-safe-setup.git</connection>
<developerConnection>scm:git:git@github.com:zg2pro/spring-safe-setup.git</developerConnection>
<url>https://github.com/zg2pro/spring-safe-setup</url>
<tag>HEAD</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>