Newer
Older

Joze RIHTARSIC
committed
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2017 European Commission | CEF eDelivery
~
~ Licensed under the EUPL, Version 1.2 or – as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence");

Joze RIHTARSIC
committed
~ You may not use this work except in compliance with the Licence.
~
~ You may obtain a copy of the Licence attached in file: LICENCE-EUPL-v1.2.pdf

Joze RIHTARSIC
committed
~
~ Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the Licence for the specific language governing permissions and limitations under the Licence.
-->
<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/maven-v4_0_0.xsd">

Joze RIHTARSIC
committed
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>eu.europa.ec.edelivery</groupId>

Joze RIHTARSIC
committed
<artifactId>smp-parent-pom</artifactId>

Joze RIHTARSIC
committed
<relativePath>../smp-parent-pom/pom.xml</relativePath>
</parent>
<artifactId>smp-api</artifactId>
<name>smp-api</name>
<dependencies>
<!-- Generated equals() methods need it in runtime -->
<dependency>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics</artifactId>
</dependency>
<dependency>
<groupId>org.apache.cxf.xjc-utils</groupId>
<artifactId>cxf-xjc-runtime</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>

Joze RIHTARSIC
committed
<dependency>
<groupId>pl.pragmatists</groupId>
<artifactId>JUnitParams</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-junit</artifactId>
<scope>test</scope>
</dependency>

Joze RIHTARSIC
committed
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>

Joze RIHTARSIC
committed
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<arg>-Xvalue-constructor</arg><!-- generates value constructors -->
<arg>-Xequals</arg><!-- generates equals() metods -->
</args>
<plugins>
<!-- generates value constructors -->
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-value-constructor</artifactId>
<version>3.0</version>
</plugin>
<!-- generates equals() methods -->
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics</artifactId>

Joze RIHTARSIC
committed
</plugin>
</plugins>
</configuration>
</plugin>

Catalin-Emanuel ENACHE
committed
<!-- just clean code coverage folder before collecting any information.
placed in this module as is the first in maven reactor order to collect info
about code coverage.
do not move this to parent pom or root pom!
-->

Catalin-Emanuel ENACHE
committed
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>default-clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
<configuration>
<filesets>
<fileset>
<directory>${maven.multiModuleProjectDirectory}/code-coverage</directory>
</fileset>
</filesets>
</configuration>
</plugin>

Joze RIHTARSIC
committed
</plugins>
</build>
</project>