<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>ETC</artifactId>
        <groupId>org.cnrs.lam.dis</groupId>
        <version>1.0.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>ETC-WebStart</artifactId>
    <name>ETC-WebStart</name>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>webstart-maven-plugin</artifactId>
                </plugin>
        </plugins>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>webstart-maven-plugin</artifactId>
                    <version>1.0-alpha-1</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>jnlp</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <jnlp>
                            <mainClass>org.cnrs.lam.dis.etc.controller.ETC42</mainClass>
                        </jnlp>
                        <libPath>lib</libPath>
                        <sign>
                            <keystore>${basedir}/etc.jks</keystore>
                            <keypass>123456</keypass>
                            <storepass>123456</storepass>
                            <storetype>jks</storetype>
                            <alias>etc</alias>
                            <verify>false</verify>
                        </sign>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.cnrs.lam.dis</groupId>
            <artifactId>ETC-Controller</artifactId>
            <version>1.0.0</version>
        </dependency>
        <dependency>
            <groupId>org.cnrs.lam.dis</groupId>
            <artifactId>ETC-Plugins-Implementations</artifactId>
            <version>1.0.0</version>
        </dependency>
    </dependencies>
    <repositories>
    	<repository>
    		<id>lam</id>
    		<name>LAM</name>
    		<url>https://cesam.lam.fr/AppsDAV/maven/</url>
    	</repository>
    </repositories>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
</project>
