Commit 0795bda8 authored by Brian Long's avatar Brian Long
Browse files

initial checkin

parents
Loading
Loading
Loading
Loading

commons-codec/pom.xml

0 → 100644
+27 −0
Original line number Diff line number Diff line
<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>
 No newline at end of file

commons-io/pom.xml

0 → 100644
+27 −0
Original line number Diff line number Diff line
<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>
 No newline at end of file
+28 −0
Original line number Diff line number Diff line
<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>
 No newline at end of file
+28 −0
Original line number Diff line number Diff line
<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>

guava/pom.xml

0 → 100644
+35 −0
Original line number Diff line number Diff line
<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>
Loading