activity-application
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fish.focus.uvms.activity</groupId> <artifactId>activity-application</artifactId> <version>1.3.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> <parent> <groupId>fish.focus.uvms.activity</groupId> <artifactId>activity</artifactId> <version>1.3.1</version> </parent> <artifactId>activity-application</artifactId> <name>${project.parent.artifactId}-application</name> <packaging>war</packaging> <properties> <docker.dev.start.phase>test-compile</docker.dev.start.phase> <docker.dev.prestop.phase>install</docker.dev.prestop.phase> <docker.liquibase.phase>test-compile</docker.liquibase.phase> <docker.liquibase.changeLogFile>../LIQUIBASE/postgres/changelog/db-changelog-master.xml</docker.liquibase.changeLogFile> <jaxb-impl.version>2.3.3</jaxb-impl.version> </properties> <dependencies> <!-- PROJECT DEPENDENCIES --> <dependency> <groupId>fish.focus.uvms.activity</groupId> <artifactId>client-model</artifactId> </dependency> <!-- UVMS COMMONS DEPENDENCIES --> <dependency> <groupId>fish.focus.uvms.commons</groupId> <artifactId>uvms-commons-rest</artifactId> </dependency> <dependency> <groupId>fish.focus.uvms.commons</groupId> <artifactId>uvms-commons-message</artifactId> </dependency> <!-- UVMS DEPENDENCIES --> <dependency> <groupId>fish.focus.uvms.maven</groupId> <artifactId>uvms-pom-monitoring-deps</artifactId> <type>pom</type> </dependency> <dependency> <groupId>fish.focus.uvms.maven</groupId> <artifactId>uvms-pom-gis-deps</artifactId> <type>pom</type> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>activity-model</artifactId> </dependency> <dependency> <groupId>fish.focus.uvms.exchange</groupId> <artifactId>exchange-model</artifactId> </dependency> <dependency> <groupId>fish.focus.uvms.asset</groupId> <artifactId>asset-model</artifactId> </dependency> <dependency> <groupId>fish.focus.uvms.asset</groupId> <artifactId>asset-client</artifactId> </dependency> <dependency> <groupId>fish.focus.uvms.lib</groupId> <artifactId>usm4uvms</artifactId> <exclusions> <exclusion> <groupId>fish.focus.uvms.commons</groupId> <artifactId>uvms-commons-message</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>fish.focus.uvms.lib</groupId> <artifactId>uvms-config</artifactId> </dependency> <dependency> <groupId>fish.focus.uvms.config</groupId> <artifactId>config-model</artifactId> </dependency> <!-- THIRD-PARTY DEPENDENCIES --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct</artifactId> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>${jaxb-impl.version}</version> </dependency> <!-- TEST DEPENDENCIES --> <dependency> <groupId>fish.focus.uvms.maven</groupId> <artifactId>uvms-pom-arquillian-deps</artifactId> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>artemis-jms-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse</groupId> <artifactId>yasson</artifactId> <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>activity</Logging-Profile> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </build> </project>