kwoyke 538c845739 JAVA-10130: Add/enable missing modules (#11887)
* JAVA-10130: Add apache-pot-2 module to the main pom.xml

* JAVA-10130: Add missing core-java-* modules to the main pom.xml

* JAVA-10130: Add maven-generate-war to the maven-modules pom.xml

* JAVA-10130: Add hibernate-mapping-2 to the persistence-modules pom.xml

* JAVA-10130: Add spring-data-jpa-enterprise-2 to the persistence-modules pom.xml

* JAVA-10130: Add spring-5-autowiring-beans module to the main pom.xml

* JAVA-10130: Add spring-cloud-docker module to the spring-cloud pom.xml

* JAVA-10130: Enable spring-cloud-openfeign module

* JAVA-10130: Add spring-data-rest-2 module to the main pom.xml

* JAVA-10130: Add wildfly-mdb module to the wildfly pom.xml

* JAVA-10130: Add aws-app-sync to the integration-lite-first profile

* JAVA-10130: Add core-java-string-algorithms-3

* JAVA-10130: Add graphql/graphql-dgs

* JAVA-10130: Add spring-di-3 and spring-threads

* JAVA-10130: Add spring-5-webflux-2 and cleanup the main pom.xml

* JAVA-10130: Add language-interop and libraries-rpc

* JAVA-10130: Disable spring-cloud-openfeign module

* JAVA-10478: Add docker module to the main pom.xml

* JAVA-10478: Move docker module to jdk9+ profile

* JAVA-10478: Remove spring-5-autowiring-beans from the main pom.xml
2022-03-11 21:39:33 +05:30

96 lines
3.7 KiB
XML

<?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.baeldung.wildfly</groupId>
<artifactId>wildfly</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>wildfly</name>
<packaging>pom</packaging>
<parent>
<groupId>com.baeldung.spring.ejb</groupId>
<artifactId>spring-ejb</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modules>
<module>widlfly-web</module>
<module>wildfly-ear</module>
<module>wildfly-jpa</module>
<module>wildfly-ejb-interfaces</module>
<module>wildfly-ejb</module>
<module>wildfly-mdb</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- Dependencies for other libraries -->
<!-- Dependency for java ee -->
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>${javaee-api.version}</version>
<scope>provided</scope>
</dependency>
<!-- Dependency for wildfly -->
<dependency>
<groupId>org.wildfly.bom</groupId>
<artifactId>wildfly-javaee7</artifactId>
<version>${wildfly-javaee7.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<!-- Dependency on Hibernate -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate-core.version}</version>
<scope>provided</scope>
</dependency>
<!-- Dependency for ear module -->
<dependency>
<groupId>com.baeldung.wildfly</groupId>
<artifactId>wildlfy-ear</artifactId>
<version>${wildlfy.version}</version>
<type>ear</type>
</dependency>
<!-- Dependency for web module -->
<dependency>
<groupId>com.baeldung.wildfly</groupId>
<artifactId>wildlfy-web</artifactId>
<version>${wildlfy.version}</version>
<type>war</type>
</dependency>
<!-- Dependency for jpa module -->
<dependency>
<groupId>com.baeldung.wildfly</groupId>
<artifactId>wildlfy-jpa</artifactId>
<version>${wildlfy.version}</version>
</dependency>
<!-- Dependency for EJB -->
<dependency>
<groupId>com.baeldung.wildfly</groupId>
<artifactId>wildfly-ejb</artifactId>
<version>${wildlfy.version}</version>
</dependency>
<!-- Dependency for EJB interfaces -->
<dependency>
<groupId>com.baeldung.wildfly</groupId>
<artifactId>wildfly-ejb-interfaces</artifactId>
<version>${wildlfy.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<javaee-api.version>7.0</javaee-api.version>
<wildfly-javaee7.version>10.1.0.Final</wildfly-javaee7.version>
<hibernate-core.version>5.2.3.Final</hibernate-core.version>
<wildlfy.version>0.0.1-SNAPSHOT</wildlfy.version>
</properties>
</project>