Administration-Service
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fish.focus.uvms.usm</groupId>
<artifactId>Administration-Service</artifactId>
<version>2.2.14</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.usm</groupId>
<artifactId>Administration-Module</artifactId>
<version>2.2.14</version>
</parent>
<artifactId>Administration-Service</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>fish.focus.uvms.usm</groupId>
<artifactId>Information-Service</artifactId>
</dependency>
<dependency>
<groupId>fish.focus.uvms.usm</groupId>
<artifactId>Authentication-Service</artifactId>
</dependency>
<dependency>
<groupId>fish.focus.uvms.audit</groupId>
<artifactId>audit-model</artifactId>
<version>4.3.12</version>
</dependency>
<dependency>
<groupId>fish.focus.uvms.commons</groupId>
<artifactId>uvms-commons-date</artifactId>
<version>${uvms.commons.version}</version>
</dependency>
<dependency>
<groupId>fish.focus.uvms.commons</groupId>
<artifactId>uvms-commons-message</artifactId>
<version>${uvms.commons.version}</version>
</dependency>
<dependency>
<groupId>fish.focus.uvms.maven</groupId>
<artifactId>uvms-pom-arquillian-deps</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<extensions>
<extension>org.apache.cxf.xjcplugins:cxf-xjc-dv:2.3.0</extension>
</extensions>
</configuration>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>xsdtojava</goal>
</goals>
<configuration>
<sourceRoot>${project.build.directory}/generated-sources/main/java</sourceRoot>
<xsdOptions>
<xsdOption>
<xsd>${basedir}/src/main/resources/USM-DeploymentDescriptor.xsd</xsd>
<bindingFile>${basedir}/src/main/resources/binding.xml</bindingFile>
<extension>true</extension>
</xsdOption>
</xsdOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>