forked from BITPlan/can4eve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
82 lines (81 loc) · 2.5 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
76
77
78
79
80
81
82
<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>
<parent>
<groupId>com.bitplan.pom</groupId>
<artifactId>com.bitplan.pom</artifactId>
<version>0.0.30</version>
<relativePath>../com.bitplan.pom/pom.xml</relativePath>
</parent>
<groupId>com.bitplan.can4eve</groupId>
<artifactId>com.bitplan.can4eve</artifactId>
<version>0.0.6</version>
<packaging>pom</packaging>
<name>com.bitplan.can4eve</name>
<description>OBDII CAN diagnosis support for electric vehicles</description>
<properties>
<!-- to make parent pom work -->
<github.project>can4eve</github.project>
<!-- for README.md generation -->
<documentation.wiki>http://can4eve.bitplan.com</documentation.wiki>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<gson.version>2.8.5</gson.version>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
<dependencies>
<!-- JUnit testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit4.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-all -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<!-- args4j command line utility -->
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>${args4j.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>13</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
<version>13</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>13</version>
</dependency>
</dependencies>
<modules>
<module>elm327</module>
<module>can4eve</module>
<module>obdii</module>
</modules>
</project>