<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>ch.baurs</groupId>
  <artifactId>spring-boot-tapestry-integration</artifactId>
  <version>0.9.3</version>
  <name>Spring Boot 2 and Tapestry 5 integration module</name>
  <description>A simple integration module for Tapestry 5.5.x into Spring Boot</description>
  <url>https://github.com/sniffertine/spring-boot-tapestry-integration</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>Stefan Baur</name>
      <email>stefan@baurs.ch</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/sniffertine/spring-boot-tapestry-integration.git</connection>
    <developerConnection>scm:git:git@github.com:sniffertine/spring-boot-tapestry-integration.git</developerConnection>
    <tag>0.9.3</tag>
    <url>https://github.com/sniffertine/spring-boot-tapestry-integration</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.apache.tapestry</groupId>
      <artifactId>tapestry-core</artifactId>
      <version>5.5.0-beta-2</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-autoconfigure</artifactId>
      <version>2.1.3.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
      <version>5.1.5.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.1.0</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
      <id>repository.apache.staging</id>
      <url>https://repository.apache.org/content/repositories/staging</url>
    </repository>
  </repositories>
  <build>
    <plugins>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.8</version>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>
