Skip to content

Instantly share code, notes, and snippets.

@dmol5E
Last active April 23, 2021 08:45

Revisions

  1. dmol5E revised this gist Apr 23, 2021. 1 changed file with 6 additions and 1 deletion.
    7 changes: 6 additions & 1 deletion pom.xml
    Original file line number Diff line number Diff line change
    @@ -8,6 +8,10 @@
    <artifactId>TaskManagerWeb</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>war</packaging>

    <properties>
    <version.server.bom>22.0.1.Final</version.server.bom>
    </properties>

    <dependencyManagement>
    <dependencies>
    @@ -20,4 +24,5 @@
    <scope>import</scope>
    </dependency>
    </dependencies>
    </dependencyManagement>
    </dependencyManagement>
    </project>
  2. dmol5E created this gist Apr 23, 2021.
    23 changes: 23 additions & 0 deletions pom.xml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    <?xml version="1.0" encoding="UTF-8"?>
    <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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.tmweb.nc</groupId>
    <artifactId>TaskManagerWeb</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>war</packaging>

    <dependencyManagement>
    <dependencies>
    <!-- importing the jakartaee8-with-tools BOM adds specs and other useful artifacts as managed dependencies -->
    <dependency>
    <groupId>org.wildfly.bom</groupId>
    <artifactId>wildfly-jakartaee8-with-tools</artifactId>
    <version>${version.server.bom}</version>
    <type>pom</type>
    <scope>import</scope>
    </dependency>
    </dependencies>
    </dependencyManagement>