-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdependency-reduced-pom.xml
107 lines (106 loc) · 3.74 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?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>de.isuret.polos</groupId>
<artifactId>AetherOnePi</artifactId>
<name>AetherOnePi</name>
<version>${aether.version}</version>
<description>Open Source Radionics for the Rasperry Pi</description>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<manifestEntries>
<Main-Class>de.isuret.polos.AetherOnePi.processing2.AetherOneUI</Main-Class>
</manifestEntries>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</repository>
<repository>
<snapshots>
<updatePolicy>always</updatePolicy>
</snapshots>
<id>oss-snapshots-repo</id>
<name>Sonatype OSS Maven Repository</name>
<url>https://oss.sonatype.org/content/groups/public</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>Clojars Repository</id>
<url>https://clojars.org/repo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>junit-platform-engine</artifactId>
<groupId>org.junit.platform</groupId>
</exclusion>
<exclusion>
<artifactId>junit-jupiter-api</artifactId>
<groupId>org.junit.jupiter</groupId>
</exclusion>
<exclusion>
<artifactId>apiguardian-api</artifactId>
<groupId>org.apiguardian</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<org.eclipse.jgit.version>5.1.3.201810200350-r</org.eclipse.jgit.version>
<controlP5.version>2.3.0</controlP5.version>
<commons-csv.version>1.5</commons-csv.version>
<pi4j-core.version>1.2</pi4j-core.version>
<commons-io.version>2.7</commons-io.version>
<aether.version>1.3.0</aether.version>
<java.version>1.8</java.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<java-google-speech-api.version>8.0.0</java-google-speech-api.version>
<maven-clean-plugin.version>3.1.0</maven-clean-plugin.version>
<nitrite.version>3.2.0</nitrite.version>
<core.version>3.3.7</core.version>
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
<maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version>
<appleJar.version>1.0.0</appleJar.version>
<maven-install-plugin.version>3.0.0-M1</maven-install-plugin.version>
<jts-core.version>1.16.1</jts-core.version>
</properties>
</project>