ais-module
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fish.focus.uvms.plugins.ais</groupId>
<artifactId>ais-module</artifactId>
<version>3.1.41</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<artifactId>ais-module</artifactId>
<name>${project.parent.artifactId}-module</name>
<packaging>ear</packaging>
<parent>
<groupId>fish.focus.uvms.plugins.ais</groupId>
<artifactId>ais</artifactId>
<version>3.1.41</version>
</parent>
<build>
<finalName>${project.name}</finalName>
<plugins>
<!-- This configuration specifies what ends up in application.xml -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<modules>
<ejbModule>
<groupId>${project.groupId}</groupId>
<artifactId>ais-service</artifactId>
</ejbModule>
<jarModule>
<groupId>fish.focus.uvms.asset</groupId>
<artifactId>asset-client</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>fish.focus.uvms.lib</groupId>
<artifactId>usm4uvms</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<rarModule>
<groupId>${project.groupId}</groupId>
<artifactId>ais-ra-rar</artifactId>
</rarModule>
</modules>
<skinnyWars>true</skinnyWars>
<archive>
<manifestEntries>
<Logging-Profile>ais</Logging-Profile>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>ais-service</artifactId>
<version>${project.version}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>ais-ra-rar</artifactId>
<version>${project.version}</version>
<type>rar</type>
</dependency>
<dependency>
<groupId>fish.focus.uvms.asset</groupId>
<artifactId>asset-client</artifactId>
<version>${uvms.asset.version}</version>
</dependency>
<dependency>
<groupId>fish.focus.uvms.lib</groupId>
<artifactId>usm4uvms</artifactId>
<version>${uvms.usm4uvms.version}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>wildfly-deploy</id>
<build>
<plugins>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>5.1.3.Final</version>
<configuration>
<filename>${project.build.finalName}.${project.packaging}</filename>
<targetDir>${project.build.directory}</targetDir>
<hostname>${hostname}</hostname>
<port>${port}</port>
<username>${username}</username>
<password>${password}</password>
<force>true</force>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>