-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpom.xml
75 lines (72 loc) · 2.06 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
69
70
71
72
73
74
75
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.serifpersia</groupId>
<artifactId>esp32-partitions-tool</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>ESP32 Partition Tool</name>
<build>
<plugins>
<!-- Add the maven-jar-plugin to specify the main class in the
manifest -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifest>
<mainClass>
com.serifpersia.esp32partitiontool.ESP32PartitionTool</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<!-- Add the maven-clean-plugin to clean the target folder -->
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<filesets>
<fileset>
<directory>${project.build.directory}</directory>
</fileset>
</filesets>
</configuration>
<executions>
<execution>
<id>auto-clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>processing</groupId>
<artifactId>pde</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${pom.basedir}/dependencies/pde.jar</systemPath>
</dependency>
<dependency>
<groupId>arduino</groupId>
<artifactId>arduino-core</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${pom.basedir}/dependencies/arduino-core.jar</systemPath>
</dependency>
<dependency>
<groupId>commons</groupId>
<artifactId>commons-codec</artifactId>
<version>1.7</version>
<scope>system</scope>
<systemPath>${pom.basedir}/dependencies/commons-codec-1.7.jar</systemPath>
</dependency>
</dependencies>
</project>