<?xml version="1.0"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <relativePath>../tl-parent-all</relativePath>
    <groupId>com.top-logic</groupId>
    <artifactId>tl-parent-all</artifactId>
    <version>7.5.0-M4</version>
  </parent>

  <artifactId>tl-build-doclet</artifactId>

  <properties>
	<maven.compiler.source>1.8</maven.compiler.source>
	<maven.compiler.target>1.8</maven.compiler.target>
	
	<dependency-check.skip>true</dependency-check.skip>
  </properties>

  <dependencies>
  	<dependency>
  		<groupId>com.top-logic</groupId>
  		<artifactId>tl-tools-resources</artifactId>
  	</dependency>
	<dependency>
		<groupId>com.sun</groupId>
		<artifactId>javadoc</artifactId>
		<version>1.8.0</version>
		<scope>system</scope>
		<systemPath>${java8.home}/lib/tools.jar</systemPath>
	</dependency>
  </dependencies>
  
  <build>
	<plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>3.1.1</version>

            <configuration>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>

            <executions>
                <execution>
                    <id>make-assembly</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
   	</plugins>
  </build>
  
</project>
