<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>com.tomasteubner.j2ee</groupId>
    <version>1.20-SNAPSHOT</version>
    <artifactId>j2ee-libs-dependencies</artifactId>
  </parent>
  <artifactId>converter-ws</artifactId>
  <version>1.1-SNAPSHOT</version>
  <name>converter-ws</name>
  <packaging>war</packaging>
  <description>Web Service Converting Files with System Commands</description>
  <dependencies>
  	<dependency>
  		<groupId>org.springframework.boot</groupId>
  		<artifactId>spring-boot-starter-web</artifactId>
  	</dependency>
  	<dependency>
  		<groupId>com.tomasteubner</groupId>
  		<artifactId>java-util</artifactId>
  	</dependency>
  	<dependency>
  		<groupId>com.tomasteubner.j2ee</groupId>
  		<artifactId>web-util</artifactId>
  	</dependency>
  	<dependency>
  		<groupId>org.springframework</groupId>
  		<artifactId>spring-beans</artifactId>
  	</dependency>
  </dependencies>
  <properties>
  	<build.timestamp>${maven.build.timestamp}</build.timestamp>
  	<build.timestamp.format>yyyy-MM-dd HH:mm</build.timestamp.format>
  </properties>
  <build>
	<resources>
		<resource>
			<directory>src/main/resources</directory>
			<filtering>true</filtering>
		</resource>
		<resource>
			<directory>src/main/java</directory>
			<filtering>false</filtering>
			<includes>
				<include>**/messages*.properties</include>
			</includes>
		</resource>
	</resources>
  </build>
</project>