<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>
    <groupId>com.baeldung</groupId>
    <artifactId>spring-security-stormpath</artifactId>
    <version>1.0-SNAPSHOT</version>
    <name>spring-security-stormpath</name>
    <packaging>war</packaging>
    <url>http://maven.apache.org</url>
	
    <developers>
        <developer>
            <email>abhinabkanrar@gmail.com</email>
            <name>Abhinab Kanrar</name>
            <url>https://github.com/AbhinabKanrar</url>
            <id>abhinabkanrar</id>
        </developer>
    </developers>

    <parent>
        <artifactId>parent-boot-1</artifactId>
        <groupId>com.baeldung</groupId>
        <version>0.0.1-SNAPSHOT</version>
        <relativePath>../parent-boot-1</relativePath>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>com.stormpath.spring</groupId>
            <artifactId>stormpath-default-spring-boot-starter</artifactId>
            <version>${stormpath-spring.version}</version>
        </dependency>
    </dependencies>

    <build>
        <finalName>spring-security-stormpath</finalName>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <addResources>true</addResources>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
	
    <properties>
        <stormpath-spring.version>1.5.4</stormpath-spring.version>
    </properties>

</project>