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>

Pawel GUTOWSKI
committed
<artifactId>smp-parent-pom</artifactId>

Pawel GUTOWSKI
committed
<relativePath>../smp-parent-pom/pom.xml</relativePath>
</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
<ftp.host>wltdgt02.cc.cec.eu.int</ftp.host>
<ftp.port>2059</ftp.port>
<ftp.remotedir>/ec/test/server/weblogic/u010/home/digciedt/data/CIPA-EDEL_DEV/autodeploy</ftp.remotedir>

Joze RIHTARSIC
committed
<jdbc.driver>com.mysql.jdbc.Driver</jdbc.driver>
<jdbc.url>jdbc:mysql://localhost/smpdbdev</jdbc.url>
<jdbc.user>smpdev</jdbc.user>
<jdbc.password>****</jdbc.password>
<target-database>MySQL</target-database>
<jdbc.read-connections.max>10</jdbc.read-connections.max>
-->
<jdbc.driver>org.h2.Driver</jdbc.driver>
<jdbc.url>jdbc:h2:file:./target/myDb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=TRUE;AUTO_SERVER=TRUE</jdbc.url>

Joze RIHTARSIC
committed
<jdbc.user>smp</jdbc.user>
<jdbc.password>****</jdbc.password>
<hibernate.dialect>org.hibernate.dialect.H2Dialect</hibernate.dialect>
<target-database>H2</target-database>

Joze RIHTARSIC
committed
<jdbc.read-connections.max>10</jdbc.read-connections.max>
<spring.jpa.generate-ddl>true</spring.jpa.generate-ddl>

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>

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>
<version>1.3.3</version>
</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>

Joze RIHTARSIC
committed
<!--dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>RELEASE</version>
<scope>compile</scope>

Joze RIHTARSIC
committed
</dependency-->

Pawel GUTOWSKI
committed
</dependencies>

Joze RIHTARSIC
committed

Pawel GUTOWSKI
committed
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<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
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<configuration>
<target>
<ftp server="${ftp.host}" port="${ftp.port}" passive="yes" remotedir="${ftp.remotedir}" userid="${ftp.user}" password="${ftp.password}">

Pawel GUTOWSKI
committed
<fileset dir="${project.build.directory}">
<include name="${project.artifactId}.${project.packaging}" />

Pawel GUTOWSKI
committed
</fileset>
</ftp>
</target>
</configuration>
<dependencies>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-commons-net</artifactId>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>1.4.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>