<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>de.rpgframework</groupId>
		<artifactId>rpgframework-master</artifactId>
      <version>5.4.4</version>
	</parent>

	<artifactId>foundryvtt-documents</artifactId>
	<version>13.1</version>

	<name>RPGFramework_FoundryVTT</name>
	<url>http://www.rpgframework.de/</url>
	<description>Base Framework for Foundry VTT exports</description>

	<dependencies>
	</dependencies>

	<build>
		<plugins>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.2.1</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar-no-fork</goal>
						</goals>
						<configuration>
							<skipSource>false</skipSource>
						</configuration>
					</execution>
				</executions>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>3.1.0</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<skip>false</skip>
							<failOnError>false</failOnError>
							<stylesheet>java</stylesheet>
							<docfilessubdirs>true</docfilessubdirs>
							<additionalOptions>
								-html5 -Xdoclint:syntax
							</additionalOptions>
							<detectLinks>true</detectLinks>
							<links>
								<link>https://docs.oracle.com/en/java/javase/11/docs/api/</link>
								<link>https://openjfx.io/javadoc/12/</link>
							</links>
							<author>false</author>
							<sourceFileExcludes>
								<sourceFileExclude>**/module-info.java</sourceFileExclude>
							</sourceFileExcludes>
						</configuration>

					</execution>
				</executions>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.6</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<configuration>
							<gpgArguments>
								<arg>--pinentry-mode</arg>
								<arg>loopback</arg>
							</gpgArguments>
						</configuration>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

		</plugins>
	</build>

</project>
