initial checkin

This commit is contained in:
Brian Long 2023-01-27 16:33:12 -05:00
commit 0795bda85c
43 changed files with 1456 additions and 0 deletions

27
commons-codec/pom.xml Normal file
View File

@ -0,0 +1,27 @@
<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.codec</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.codec</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
</dependencies>
</project>

27
commons-io/pom.xml Normal file
View File

@ -0,0 +1,27 @@
<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.io</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.io</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
</dependencies>
</project>

28
commons-logging/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.logging</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.logging</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
</project>

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>com.google.guava.failureaccess</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>com.google.guava.failureaccess</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>failureaccess</artifactId>
<version>1.0.1</version>
</dependency>
</dependencies>
</project>

35
guava/pom.xml Normal file
View File

@ -0,0 +1,35 @@
<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>com.google.guava</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>com.google.guava</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java or private JBoss dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.google.guava.failureaccess</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,33 @@
<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.httpcomponents.core</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.httpcomponents.core</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.apache.commons.logging</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
</dependencies>
</project>

50
httpcomponents/pom.xml Normal file
View File

@ -0,0 +1,50 @@
<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.httpcomponents</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.httpcomponents</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.apache.commons.logging</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.apache.commons.codec</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>org.apache.httpcomponents.core</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.5.14</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,27 @@
<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>com.fasterxml.jackson.core.jackson-annotations</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>com.fasterxml.jackson.core.jackson-annotations</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
</dependencies>
</project>

27
jackson-core/pom.xml Normal file
View File

@ -0,0 +1,27 @@
<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>com.fasterxml.jackson.core.jackson-core</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>com.fasterxml.jackson.core.jackson-core</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
</dependencies>
</project>

40
jackson-databind/pom.xml Normal file
View File

@ -0,0 +1,40 @@
<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>com.fasterxml.jackson.core.jackson-databind</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>com.fasterxml.jackson.core.jackson-databind</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.fasterxml.jackson.core.jackson-core</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.fasterxml.jackson.core.jackson-annotations</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
</dependencies>
</project>

64
jackson-jakarta/pom.xml Normal file
View File

@ -0,0 +1,64 @@
<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>com.fasterxml.jackson.jakarta.jackson-jakarta-json-provider</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>com.fasterxml.jackson.jakarta.jackson-jakarta-json-provider</wildfly.module.id>
</properties>
<dependencies>
<!-- Other Modules -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.fasterxml.jackson.core.jackson-annotations</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.fasterxml.jackson.core.jackson-core</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.fasterxml.jackson.core.jackson-databind</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.ws.rs.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.xml.bind.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<!-- Libraries -->
<dependency>
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
<artifactId>jackson-jakarta-rs-json-provider</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jakarta-xmlbind-annotations</artifactId>
</dependency>
</dependencies>
</project>

29
jackson-jaxrs/pom.xml Normal file
View File

@ -0,0 +1,29 @@
<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>com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider</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>com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>com.fasterxml.jackson.jakarta.jackson-jakarta-json-provider</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
<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>jakarta.activation.api</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>jakarta.activation.api</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java or private JBoss dependencies -->
<dependency>
<groupId>jakarta.activation</groupId>
<artifactId>jakarta.activation-api</artifactId>
<version>2.1.1</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,27 @@
<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>jakarta.annotation.api</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>jakarta.annotation.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,50 @@
<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>jakarta.enterprise.api</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>jakarta.enterprise.api</wildfly.module.id>
</properties>
<dependencies>
<!-- Exluding Weld/Glassfish libraries -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.inject.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.interceptor.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.annotation.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.lang-model</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,27 @@
<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>jakarta.inject.api</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>jakarta.inject.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.inject</groupId>
<artifactId>jakarta.inject-api</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,27 @@
<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>jakarta.interceptor.api</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>jakarta.interceptor.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.interceptor</groupId>
<artifactId>jakarta.interceptor-api</artifactId>
</dependency>
</dependencies>
</project>

35
jakarta-mail-api/pom.xml Normal file
View File

@ -0,0 +1,35 @@
<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>jakarta.mail.api</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>jakarta.mail.api</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java or private JBoss dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.activation.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>jakarta.mail</groupId>
<artifactId>jakarta.mail-api</artifactId>
<version>2.1.1</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,27 @@
<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>jakarta.servlet.api</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>jakarta.servlet.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,34 @@
<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>jakarta.servlet.jsp.api</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>jakarta.servlet.jsp.api</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java or private JBoss dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.servlet.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>jakarta.servlet.jsp</groupId>
<artifactId>jakarta.servlet.jsp-api</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,40 @@
<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>jakarta.servlet.jstl.api</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>jakarta.servlet.jstl.api</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java or private JBoss dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.servlet.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.servlet.jsp.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>jakarta.servlet.jsp.jstl</groupId>
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,39 @@
<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>jakarta.transaction.api</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>jakarta.transaction.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.enterprise.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.interceptor.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>jakarta.transaction</groupId>
<artifactId>jakarta.transaction-api</artifactId>
</dependency>
</dependencies>
</project>

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>jakarta.validation.api</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>jakarta.validation.api</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java or private JBoss dependencies -->
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
</dependencies>
</project>

34
jakarta-ws-rs-api/pom.xml Normal file
View File

@ -0,0 +1,34 @@
<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>jakarta.ws.rs.api</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>jakarta.ws.rs.api</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java or private JBoss dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.xml.bind.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,40 @@
<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>jakarta.xml.bind.api</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>jakarta.xml.bind.api</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java or private JBoss dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.activation.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.xml.stream.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
<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>javax.activation.api</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>javax.activation.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.activation.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
<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>javax.annotation.api</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>javax.annotation.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.annotation.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

20
javax-api/pom.xml Normal file
View File

@ -0,0 +1,20 @@
<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>javax.api</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>javax.api</wildfly.module.id>
</properties>
</project>

View File

@ -0,0 +1,29 @@
<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>javax.enterprise.api</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>javax.enterprise.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.enterprise.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

29
javax-inject-api/pom.xml Normal file
View File

@ -0,0 +1,29 @@
<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>javax.inject.api</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>javax.inject.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.inject.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
<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>javax.interceptor.api</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>javax.interceptor.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.interceptor.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

29
javax-mail-api/pom.xml Normal file
View File

@ -0,0 +1,29 @@
<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>javax.mail.api</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>javax.mail.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.mail.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

29
javax-servlet-api/pom.xml Normal file
View File

@ -0,0 +1,29 @@
<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>javax.servlet.api</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>javax.servlet.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.servlet.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
<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>javax.servlet.jsp.api</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>javax.servlet.jsp.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.servlet.jsp.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
<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>javax.servlet.jstl.api</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>javax.servlet.jstl.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.servlet.jstl.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
<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>javax.transaction.api</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>javax.transaction.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.transaction.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
<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>javax.validation.api</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>javax.validation.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.validation.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

29
javax-ws-rs-api/pom.xml Normal file
View File

@ -0,0 +1,29 @@
<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>javax.ws.rs.api</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>javax.ws.rs.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.ws.rs.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
<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>javax.xml.bind.api</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>javax.xml.bind.api</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jakarta.xml.bind.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,20 @@
<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>javax.xml.stream.api</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>javax.xml.stream.api</wildfly.module.id>
</properties>
</project>

131
pom.xml Normal file
View File

@ -0,0 +1,131 @@
<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</groupId>
<artifactId>system-wildfly-modules</artifactId>
<version>27.0.1.Final</version>
<packaging>pom</packaging>
<name>Maven System Module Definitions</name>
<description>A set of Maven artifacts for Wildfly module integration</description>
<url>https://bitbucket.org/inteligr8/wildfly-system-modules</url>
<licenses>
<license>
<name>GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:https://bitbucket.org/inteligr8/wildfly-system-modules.git</connection>
<developerConnection>scm:git:git@bitbucket.org:inteligr8/wildfly-system-modules.git</developerConnection>
<url>https://bitbucket.org/inteligr8/wildfly-system-modules</url>
</scm>
<organization>
<name>inteligr8</name>
<url>https://www.inteligr8.com</url>
</organization>
<developers>
<developer>
<id>brian.long</id>
<name>Brian Long</name>
<email>brian@inteligr8.com</email>
<url>https://twitter.com/brianmlong</url>
</developer>
</developers>
<properties>
<wildfly.module.system>true</wildfly.module.system>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-ee</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>commons-logging</module>
<module>commons-codec</module>
<module>commons-io</module>
<module>javax-api</module>
<module>javax-xml-stream-api</module>
<module>jakarta-activation-api</module>
<module>javax-activation-api</module>
<module>jakarta-validation-api</module>
<module>javax-validation-api</module>
<module>jakarta-annotation-api</module>
<module>javax-annotation-api</module>
<module>jakarta-mail-api</module>
<module>javax-mail-api</module>
<module>jakarta-transaction-api</module>
<module>javax-transaction-api</module>
<module>jakarta-xml-bind-api</module>
<module>javax-xml-bind-api</module>
<module>jakarta-ws-rs-api</module>
<module>javax-ws-rs-api</module>
<module>jakarta-inject-api</module>
<module>javax-inject-api</module>
<module>jakarta-interceptor-api</module>
<module>javax-interceptor-api</module>
<module>jakarta-enterprise-api</module>
<module>javax-enterprise-api</module>
<module>jakarta-servlet-api</module>
<module>javax-servlet-api</module>
<module>jakarta-servlet-jsp-api</module>
<module>javax-servlet-jsp-api</module>
<module>jakarta-servlet-jstl-api</module>
<module>javax-servlet-jstl-api</module>
<module>guava-failureaccess</module>
<module>guava</module>
<module>woodstox</module>
<module>slf4j</module>
<module>httpcomponents-core</module>
<module>httpcomponents</module>
<module>jackson-core</module>
<module>jackson-annotations</module>
<module>jackson-databind</module>
<module>jackson-jakarta</module>
<module>jackson-jaxrs</module>
</modules>
<profiles>
<profile>
<id>ossrh-release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign</id>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

27
slf4j/pom.xml Normal file
View File

@ -0,0 +1,27 @@
<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.slf4j</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.slf4j</wildfly.module.id>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
</project>

29
woodstox/pom.xml Normal file
View File

@ -0,0 +1,29 @@
<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.codehaus.woodstox</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.codehaus.woodstox</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java or private JBoss dependencies -->
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
<version>6.4.0</version>
</dependency>
</dependencies>
</project>