Newer
Older

Joze RIHTARSIC
committed
<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">

Pawel GUTOWSKI
committed
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>eu.europa.ec.edelivery</groupId>
<artifactId>smp-modules</artifactId>
<version>5.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>

Pawel GUTOWSKI
committed
</parent>

Joze RIHTARSIC
committed
<packaging>war</packaging>
<name>smp-webapp</name>

Pawel GUTOWSKI
committed
<description>SMP REST service WEB APP</description>

Joze RIHTARSIC
committed

Joze RIHTARSIC
committed
<properties>
<maven.deploy.skip>false</maven.deploy.skip>

Joze RIHTARSIC
committed
<buildtimestamp>${maven.build.timestamp}</buildtimestamp>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss'Z'</maven.build.timestamp.format>

Joze RIHTARSIC
committed
</properties>

Pawel GUTOWSKI
committed
<dependencies>
<dependency>
<groupId>eu.europa.ec.edelivery</groupId>

Pawel GUTOWSKI
committed
<artifactId>smp-server-library</artifactId>
<version>${project.version}</version>
</dependency>

Joze RIHTARSIC
committed
<dependency>
<groupId>eu.europa.ec.edelivery</groupId>
<artifactId>smp-angular</artifactId>
<version>${project.version}</version>
</dependency>
<!-- oasis SMP is included by default to smp deployment-->
<dependency>
<groupId>eu.europa.ec.edelivery</groupId>
<artifactId>oasis-smp-spi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>eu.europa.ec.dynamic-discovery</groupId>
<artifactId>dynamic-discovery-client</artifactId>
</dependency>
<!-- end oasis SMP is included by default to smp deployment-->

Pawel GUTOWSKI
committed
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>

Pawel GUTOWSKI
committed
</dependency>
<dependency>
<groupId>eu.europa.ec.edelivery</groupId>
<artifactId>edelivery-springsecurity-2-way-ssl-auth</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
</dependency>

Pawel GUTOWSKI
committed
<dependency>

Pawel GUTOWSKI
committed
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-core</artifactId>

Pawel GUTOWSKI
committed
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>

Pawel GUTOWSKI
committed
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>

Pawel GUTOWSKI
committed
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-junit</artifactId>
<scope>test</scope>
</dependency>
<!-- the default JDBC driver -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>test</scope>
</dependency>

Pawel GUTOWSKI
committed
</dependencies>

Joze RIHTARSIC
committed

Pawel GUTOWSKI
committed
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<build>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>**/*.jks</exclude>
</excludes>
</testResource>
<testResource>
<directory>src/test/resources</directory>
<filtering>false</filtering>
<!-- With filtering=true Maven was introducing changes in keystore binary files [sic!] -->
<includes>
<include>**/*.jks</include>
</includes>
</testResource>
</testResources>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<targetPath>${project.build.directory}/classes</targetPath>
<filtering>true</filtering>
</resource>
<resource>
<directory>${basedir}/src/main/webapp</directory>
<targetPath>${project.build.directory}/webapp-classes</targetPath>
</resource>
</resources>

Joze RIHTARSIC
committed

Pawel GUTOWSKI
committed
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<warName>${project.artifactId}</warName>

Pawel GUTOWSKI
committed
<archive>
<manifestEntries>
<WebLogic-Application-Version>v${project.version}</WebLogic-Application-Version>
</manifestEntries>
</archive>

Pawel GUTOWSKI
committed
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>assembly-smp-setup</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptor>src/main/smp-setup/smp-setup.xml</descriptor>
</configuration>
</execution>
</executions>
</plugin>

Pawel GUTOWSKI
committed
</plugins>
</build>