<?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>
  <parent>
    <groupId>com.rubensgomes.pom.springboot</groupId>
    <artifactId>springboot-base-pom</artifactId>
    <version>1.14</version>
  </parent>
  <groupId>com.rubensgomes.pom.springboot</groupId>
  <artifactId>springboot-webapp-pom</artifactId>
  <version>1.14</version>
  <packaging>pom</packaging>
  <name>springboot-webapp-pom</name>
  <description>WebApp Spring Boot Parent POM</description>
  <properties>
    <parent_pom_build.timestamp>Fri Nov  3 09:39:29 CDT 2023</parent_pom_build.timestamp>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
        <executions>
          <execution>
            <id>rg-packaging-war</id>
            <phase>package</phase>
            <goals>
              <goal>war</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>rg-repackaging-springboot-jar</id>
            <phase>package</phase>
            <goals>
              <goal>repackage</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
