config-module
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fish.focus.uvms.config</groupId>
<artifactId>config-module</artifactId>
<version>4.4.1</version>
</dependency><?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>
<artifactId>config-module</artifactId>
<name>${project.parent.artifactId}-module</name>
<packaging>war</packaging>
<parent>
<groupId>fish.focus.uvms.config</groupId>
<artifactId>config</artifactId>
<version>4.4.1</version>
</parent>
<properties>
<docker.dev.start.phase>test-compile</docker.dev.start.phase>
<docker.liquibase.phase>test-compile</docker.liquibase.phase>
<docker.dev.prestop.phase>validate</docker.dev.prestop.phase>
<docker.dev.stop.phase>verify</docker.dev.stop.phase>
<docker.liquibase.changeLogFile>../LIQUIBASE/changelog/db-changelog-master.xml</docker.liquibase.changeLogFile>
</properties>
<dependencies>
<dependency>
<groupId>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom-monitoring-deps</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>fish.focus.uvms.config</groupId>
<artifactId>config-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>fish.focus.uvms.commons</groupId>
<artifactId>uvms-commons-message</artifactId>
<version>${uvms.common.version}</version>
</dependency>
<dependency>
<groupId>fish.focus.uvms.commons</groupId>
<artifactId>uvms-commons-rest</artifactId>
<version>${uvms.common.version}</version>
</dependency>
<dependency>
<groupId>fish.focus.uvms.audit</groupId>
<artifactId>audit-model</artifactId>
<version>${audit.model.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>fish.focus.uvms.commons</groupId>
<artifactId>uvms-commons-date</artifactId>
</dependency>
<dependency>
<groupId>fish.focus.uvms.lib</groupId>
<artifactId>usm4uvms</artifactId>
<version>${usm4uvms.version}</version>
<exclusions>
<exclusion>
<groupId>fish.focus.uvms</groupId>
<artifactId>uvms-commons</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom-arquillian-deps</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse</groupId>
<artifactId>yasson</artifactId>
<version>1.0.8</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.name}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webResources>
<resource>
<directory>src/main/webapp</directory>
<filtering>true</filtering>
</resource>
</webResources>
<archive>
<manifestEntries>
<Logging-Profile>config</Logging-Profile>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<!-- USE following command to run this profile: mvn clean install -P wildfly-deploy wildfly:deploy -Dhostname=127.0.0.1 -Dport=9990 -Dusername=admin -Dpassword=asdf -->
<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>