<?xml version="1.0" encoding="UTF-8"?>
<!--
#%L
*********************************************************************************************************************
blueMarine - lightweight MediaCenter
%%
Copyright (C) 2015 - 2017 Tidalwave s.a.s. (http://tidalwave.it)
%%
*********************************************************************************************************************
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
*********************************************************************************************************************
$Id$
*********************************************************************************************************************
#L%
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.tidalwave.bluemarine2</groupId>
<artifactId>bluemarine2-modules</artifactId>
<version>1.0-ALPHA-17</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<!-- ===============================================================================================================
================================================================================================================ -->
<groupId>it.tidalwave.bluemarine2</groupId>
<artifactId>bluemarine2-application-javafx-linux</artifactId>
<version>1.0-ALPHA-17</version>
<packaging>pom</packaging>
<name>blueMarine II - Installers - JavaFX Application, Linux</name>
<description>This module creates a Linux application bundle.</description>
<dependencies>
<dependency>
<groupId>it.tidalwave.bluemarine2</groupId>
<artifactId>it-tidalwave-bluemarine2-application-javafx</artifactId>
</dependency>
<!-- FIXME: why are not brought by transitive dependencies? -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeScope>runtime</includeScope>
<overWrite>true</overWrite>
<outputDirectory>${basedir}/target/classes/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>${basedir}/src/main/assembly/zip.xml</descriptor>
</descriptors>
<runOnlyAtExecutionRoot>false</runOnlyAtExecutionRoot>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>