Compare commits

2 Commits

Author SHA1 Message Date
10ac179189 added runtime JSTL to help eclipse warnings 2023-01-30 11:27:45 -05:00
d67f1ff3e1 added commons-lang3 2023-01-30 11:27:26 -05:00
3 changed files with 35 additions and 0 deletions

28
commons-lang3/pom.xml Normal file
View File

@@ -0,0 +1,28 @@
<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.inteligr8.wildfly.system</groupId>
<artifactId>org.apache.commons.lang3</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>com.inteligr8.wildfly</groupId>
<artifactId>system-wildfly-modules</artifactId>
<version>27.0.1.Final</version>
<relativePath>..</relativePath>
</parent>
<properties>
<wildfly.module.id>org.apache.commons.lang3</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
</dependencies>
</project>

View File

@@ -35,6 +35,12 @@
<groupId>jakarta.servlet.jsp.jstl</groupId>
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
<version>3.0.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>

View File

@@ -53,6 +53,7 @@
</dependencyManagement>
<modules>
<module>commons-lang3</module>
<module>commons-logging</module>
<module>commons-codec</module>
<module>commons-io</module>