<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</version>
    <artifactId>j2ee-libs-dependencies</artifactId>
  </parent>
  <artifactId>converter-ws</artifactId>
  <version>2.0</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>
  	<dependency>
  		<groupId>com.tomasteubner.j2ee</groupId>
  		<artifactId>spring-util</artifactId>
  	</dependency>
  	<dependency>
  		<groupId>com.fasterxml</groupId>
  		<artifactId>classmate</artifactId>
  		<scope>runtime</scope>
  	</dependency>
  	<dependency>
  		<groupId>org.springframework.boot</groupId>
  		<artifactId>spring-boot-starter-tomcat</artifactId>
  		<scope>provided</scope>
  	</dependency>
  	<dependency>
  		<groupId>org.jboss.logging</groupId>
  		<artifactId>jboss-logging</artifactId>
  		<scope>runtime</scope>
  	</dependency>
  	<dependency>
  		<groupId>org.libreoffice</groupId>
  		<artifactId>juh</artifactId>
  		<version>${soffice.version}</version>
  	</dependency>
  	<dependency>
  		<groupId>org.libreoffice</groupId>
  		<artifactId>ridl</artifactId>
  		<version>${soffice.version}</version>
  	</dependency>
  	<dependency>
  		<groupId>org.libreoffice</groupId>
  		<artifactId>unoil</artifactId>
  		<version>${soffice.version}</version>
  	</dependency>
  	<dependency>
  		<groupId>org.libreoffice</groupId>
  		<artifactId>jurt</artifactId>
  		<version>${soffice.version}</version>
  		<scope>runtime</scope>
  	</dependency>
  	<dependency>
  		<groupId>org.codehaus.janino</groupId>
  		<artifactId>janino</artifactId>
  		<scope>runtime</scope>
  	</dependency>
  </dependencies>
  <properties>
  	<build.timestamp>${maven.build.timestamp}</build.timestamp>
  	<build.timestamp.format>yyyy-MM-dd HH:mm</build.timestamp.format>
  	<soffice.version>5.4.2</soffice.version>
  </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>