Blob Blame History Raw
<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>
	<name>javafx.graphics-compilePrism</name>
	<packaging>jar</packaging>
	<artifactId>javafx.graphics-compilePrism</artifactId>
	<groupId>org.openjfx</groupId>
	<version>@RELEASE_VERSION@</version>
	<dependencies>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>javafx.base</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>javafx.graphics-java</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>
	<build>
		<sourceDirectory>../../build/gensrc/jsl-prism</sourceDirectory>
		<resources>
			<resource>
				<directory>../../build/gensrc/jsl-prism</directory>
				<excludes>
					<exclude>**/*.rc</exclude>
					<exclude>**/*.tokens</exclude>
					<exclude>**/*.hlsl</exclude>
				</excludes>
			</resource>
		</resources>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<release>11</release>
					<compilerArgs>
						<arg>-g:source,lines,vars</arg>
						<arg>-proc:none</arg>
						<arg>-XDuseUnsharedTable=true</arg>
						<arg>-XDignore.symbol.file</arg>
						<arg>-nowarn</arg>
						<arg>-implicit:none</arg>
						<arg>-h</arg>
						<arg>modules/javafx.graphics/build/gensrc/headers/</arg>
					</compilerArgs>
					<excludes>
						<exclude>**/mac/*.java</exclude>
						<exclude>**/ios/*.java</exclude>
						<exclude>**/android/*.java</exclude>
						<exclude>**/win/*.java</exclude>
					</excludes>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>