myboardgames/module-ear/pom.xml

68 lines
2.3 KiB
XML
Raw Normal View History

2018-12-03 23:34:57 +01:00
<?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"
2018-12-08 21:31:52 +01:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
2018-12-03 23:34:57 +01:00
2018-12-08 21:31:52 +01:00
<parent>
<artifactId>app</artifactId>
<groupId>pl.myboardgames</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
2018-12-03 23:34:57 +01:00
2018-12-08 21:31:52 +01:00
<artifactId>module-ear</artifactId>
<packaging>ear</packaging>
2018-12-03 23:34:57 +01:00
2018-12-08 21:31:52 +01:00
<dependencies>
<dependency>
<groupId>pl.myboardgames</groupId>
<artifactId>module-web</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>pl.myboardgames</groupId>
<artifactId>module-ejb</artifactId>
<type>ejb</type>
</dependency>
</dependencies>
2018-12-03 23:34:57 +01:00
2018-12-08 21:31:52 +01:00
<build>
<plugins>
2018-12-03 23:34:57 +01:00
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>2.0.0.Final</version>
<configuration>
<hostname>127.0.0.1</hostname>
<port>9990</port>
<username>admin</username>
<password>admin</password>
<name>myboardgames.ear</name>
</configuration>
<executions>
2018-12-08 21:31:52 +01:00
<!-- Undeploy the application on clean -->
2018-12-03 23:34:57 +01:00
<execution>
<id>undeploy</id>
<phase>clean</phase>
<goals>
<goal>undeploy</goal>
</goals>
<configuration>
<ignoreMissingDeployment>true</ignoreMissingDeployment>
</configuration>
</execution>
2018-12-08 21:31:52 +01:00
<!-- Deploy the application on install -->
2018-12-03 23:34:57 +01:00
<execution>
<id>deploy</id>
<phase>install</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
2018-12-08 21:31:52 +01:00
</plugins>
</build>
2018-12-03 23:34:57 +01:00
</project>