-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
68 lines (65 loc) · 2.23 KB
/
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
<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>
<groupId>com.github.nradov</groupId>
<artifactId>SdeToFit</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>SdeToFit</name>
<description>Java application to convert Suunto dive log files to ANT+ Flexible and Interoperable format for import into Garmin Connect</description>
<url>https://github.com/nradov/SdeToFit</url>
<inceptionYear>2022</inceptionYear>
<licenses>
<license>
<name>GNU Lesser General Public License v2.1</name>
<url>https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url>
</license>
</licenses>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/nradov/SdeToFit/issues</url>
</issueManagement>
<properties>
<maven.compiler.source>19</maven.compiler.source>
<maven.compiler.target>19</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<archive>
<manifest>
<mainClass>com.github.nradov.sdetofit.SdeToFit</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<!-- https://developer.garmin.com/fit/download/ -->
<groupId>com.garmin</groupId>
<artifactId>fit</artifactId>
<version>21.94.00</version>
<type>jar</type>
<scope>system</scope>
<systemPath>${env.USERPROFILE}\Downloads\FitSDKRelease_21.94.00\java\fit.jar</systemPath>
</dependency>
</dependencies>
</project>