mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-21 22:52:22 +00:00
aa686cac5e
commit bad2255710
Author: Douglas Gillespie <50671166+douggillespie@users.noreply.github.com>
Date: Thu Jul 18 09:47:47 2024 +0100
Better symbol options
Add clearer options button to multi option symbol manager panel.
198 lines
6.5 KiB
XML
198 lines
6.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<groupId>org.pamguard</groupId>
|
|
<artifactId>Pamguard</artifactId>
|
|
<name>Pamguard</name>
|
|
<version>2.02.12</version>
|
|
<description>Pamguard using Maven to control dependencies</description>
|
|
<url>www.pamguard.org</url>
|
|
<organization>
|
|
<name>Sea Mammal Research Unit, University of St. Andrews</name>
|
|
<url>http://www.smru.st-andrews.ac.uk</url>
|
|
</organization>
|
|
<build>
|
|
<sourceDirectory>${basedir}/src</sourceDirectory>
|
|
<testSourceDirectory>${basedir}/src/test</testSourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>src</directory>
|
|
<excludes>
|
|
<exclude>META-INF/*.SF,META-INF/*.DSA,META-INF/*.RSA</exclude>
|
|
<exclude>**/*.java</exclude>
|
|
<exclude>jars/*.*</exclude>
|
|
</excludes>
|
|
</resource>
|
|
</resources>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.m2e</groupId>
|
|
<artifactId>lifecycle-mapping</artifactId>
|
|
<version>1.0.0</version>
|
|
<configuration>
|
|
<lifecycleMappingMetadata>
|
|
<pluginExecutions>
|
|
<pluginExecution>
|
|
<pluginExecutionFilter>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<versionRange>[3.1.1,)</versionRange>
|
|
<goals>
|
|
<goal>purge-local-repository</goal>
|
|
</goals>
|
|
</pluginExecutionFilter>
|
|
<action>
|
|
<ignore />
|
|
</action>
|
|
</pluginExecution>
|
|
</pluginExecutions>
|
|
</lifecycleMappingMetadata>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.12.1</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-compiler-jdt</artifactId>
|
|
<version>1.5.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<release>21</release>
|
|
<compilerId>jdt</compilerId>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
<version>0.0.8</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<transformers>
|
|
<transformer>
|
|
<manifestEntries>
|
|
<Main-Class>pamguard.Pamguard</Main-Class>
|
|
<Class-Path>.</Class-Path>
|
|
<SplashScreen-Image>Resources/pgBlankSplash.png</SplashScreen-Image>
|
|
</manifestEntries>
|
|
</transformer>
|
|
<transformer />
|
|
</transformers>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<transformers>
|
|
<transformer />
|
|
</transformers>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/*.SF</exclude>
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
<exclude>test/resources/**</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.github.marschall</groupId>
|
|
<artifactId>jdeps-maven-plugin</artifactId>
|
|
<version>0.5.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-dependencies</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/tempDependencies</outputDirectory>
|
|
<overWriteReleases>false</overWriteReleases>
|
|
<overWriteSnapshots>false</overWriteSnapshots>
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<releases>
|
|
<checksumPolicy>ignore</checksumPolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<id>repo</id>
|
|
<url>file://${project.basedir}/repo</url>
|
|
</repository>
|
|
<repository>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<id>unidata-all</id>
|
|
<name>Unidata netCDF</name>
|
|
<url>https://artifacts.unidata.ucar.edu/repository/unidata-all/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>bedatadriven</id>
|
|
<name>bedatadriven public repo</name>
|
|
<url>https://nexus.bedatadriven.com/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<id>talan</id>
|
|
<name>talan</name>
|
|
<url>https://nexus.talanlabs.com/content/repositories/releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>central</id>
|
|
<url>https://repo1.maven.org/maven2</url>
|
|
</repository>
|
|
</repositories>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.github.marschall</groupId>
|
|
<artifactId>jdeps-maven-plugin</artifactId>
|
|
<version>0.5.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
<properties>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<javafx.version>21</javafx.version>
|
|
<jaxb.runtime.version>2.4.0-b180830.0438</jaxb.runtime.version>
|
|
<jaxb.xjc.version>2.4.0-b180830.0438</jaxb.xjc.version>
|
|
<jaxb.api.version>2.4.0-b180830.0359</jaxb.api.version>
|
|
</properties>
|
|
</project>
|