stormpath-sdk-tutorials-spring-boot-default-some-access-controls
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.stormpath.spring</groupId>
<artifactId>stormpath-sdk-tutorials-spring-boot-default-some-access-controls</artifactId>
<version>2.0.4-okta</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2015 Stormpath, Inc.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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.stormpath.sdk</groupId>
<artifactId>stormpath-sdk-tutorials-spring-boot</artifactId>
<version>2.0.4-okta</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.stormpath.spring</groupId>
<artifactId>stormpath-sdk-tutorials-spring-boot-default-some-access-controls</artifactId>
<version>2.0.4-okta</version>
<name>Stormpath Java SDK :: Tutorials :: Spring Boot Default :: Some Access Controls</name>
<description>A simple Spring Boot Web MVC application with out-of-the-box login and self-service screens!</description>
<properties>
<logback.version>1.1.8</logback.version>
<slf4j.version>1.7.22</slf4j.version>
<spring.boot.version>1.5.1.RELEASE</spring.boot.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- Compile-time dependencies: -->
<dependency>
<groupId>com.stormpath.spring</groupId>
<artifactId>stormpath-default-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Runtime-only dependencies: -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring.boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
</plugins>
</build>
</project>