Last active
April 23, 2021 08:45
Revisions
-
dmol5E revised this gist
Apr 23, 2021 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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> </project> -
dmol5E created this gist
Apr 23, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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>