| POM: |
Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>net.officefloor.tutorial</groupId>
<artifactId>SpringRestSecurityHttpServer</artifactId>
<version>4.0.0</version>
<name>Spring REST Security HTTP Server Tutorial</name>
<description>Tutorial demonstrating Spring Security integration with OfficeFloor REST YAML composition</description>
<url>http://officefloor.net/officefloor/tutorials/springboot/SpringRestSecurityHttpServer/</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>sagenschneider</id>
<name>Daniel Sagenschneider</name>
<email>daniel@officefloor.net</email>
<roles>
<role>Founder</role>
<role>Administrator</role>
<role>Developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/officefloor/OfficeFloor.git/officefloor/tutorials/springboot/SpringRestSecurityHttpServer</connection>
<developerConnection>scm:git:git@github.com:officefloor/OfficeFloor.git/officefloor/tutorials/springboot/SpringRestSecurityHttpServer</developerConnection>
<url>https://github.com/officefloor/OfficeFloor/officefloor/tutorials/springboot/SpringRestSecurityHttpServer</url>
</scm>
<dependencies>
<dependency>
<groupId>net.officefloor.springboot</groupId>
<artifactId>officefloor-rest-spring-boot-starter</artifactId>
<version>4.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>3.5.11</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>3.5.11</version>
<scope>compile</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>Central first</id>
<name>List central first so is used first</name>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
<repository>
<id>OfficeFloor-stage-repository</id>
<name>Staged artifacts for OfficeFloor</name>
<url>https://github.com/officefloor/maven/raw/repository/</url>
</repository>
</repositories>
</project>
|