-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdependency-reduced-pom.xml
91 lines (91 loc) · 2.99 KB
/
dependency-reduced-pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?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>com.averydonovan</groupId>
<artifactId>SkewTVSP</artifactId>
<name>Skew-T Virtual Sounding Plotter</name>
<version>0.3.0-alpha.5</version>
<url>http://github.com/averydonovan/SkewTVirtualSoundingPlotter/</url>
<inceptionYear>2016</inceptionYear>
<developers>
<developer>
<name>Avery Donovan</name>
<email>[email protected]</email>
<url>https://averydonovan.com</url>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>BSD 2-Clause License</name>
<url>https://opensource.org/licenses/BSD-2-Clause</url>
</license>
</licenses>
<organization>
<name>Avery Donovan</name>
<url>https://averydonovan.com</url>
</organization>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<transformers>
<transformer>
<mainClass>com.averydonovan.skewtvsp.RunApp</mainClass>
</transformer>
</transformers>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.5</version>
<configuration>
<mainClass>com.averydonovan.skewtvsp.SkewTVSP</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>unidata-all</id>
<name>Unidata All</name>
<url>https://artifacts.unidata.ucar.edu/repository/unidata-all/</url>
</repository>
</repositories>
<properties>
<maven.compiler.release>${java.version}</maven.compiler.release>
<maven.compiler.target>${java.version}</maven.compiler.target>
<java.version>11</java.version>
<netcdfJavaVersion>5.4.1</netcdfJavaVersion>
<maven.compiler.source>${java.version}</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<slf4jVersion>1.7.30</slf4jVersion>
<javafx.version>11</javafx.version>
</properties>
</project>