-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
88 lines (82 loc) · 3 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
83
84
85
86
87
88
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.usfirst.frc.team1360</groupId>
<artifactId>power-up</artifactId>
<version>2018</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<testResources>
<testResource>
<directory>test-resources</directory>
</testResource>
</testResources>
</build>
<dependencies>
<dependency>
<groupId>wpilib</groupId>
<artifactId>WPILib</artifactId>
<version>2018</version>
<scope>system</scope>
<systemPath>${user.home}/wpilib/java/current/lib/WPILib.jar</systemPath>
</dependency>
<dependency>
<groupId>wpilib</groupId>
<artifactId>cscore</artifactId>
<version>2018</version>
<scope>system</scope>
<systemPath>${user.home}/wpilib/java/current/lib/cscore.jar</systemPath>
</dependency>
<dependency>
<groupId>wpilib</groupId>
<artifactId>ntcore</artifactId>
<version>2018</version>
<scope>system</scope>
<systemPath>${user.home}/wpilib/java/current/lib/ntcore.jar</systemPath>
</dependency>
<dependency>
<groupId>wpilib</groupId>
<artifactId>opencv</artifactId>
<version>2018</version>
<scope>system</scope>
<systemPath>${user.home}/wpilib/java/current/lib/opencv.jar</systemPath>
</dependency>
<dependency>
<groupId>wpilib</groupId>
<artifactId>wpiutil</artifactId>
<version>2018</version>
<scope>system</scope>
<systemPath>${user.home}/wpilib/java/current/lib/wpiutil.jar</systemPath>
</dependency>
<dependency>
<groupId>wpilib</groupId>
<artifactId>navx</artifactId>
<version>2018</version>
<scope>system</scope>
<systemPath>${user.home}/wpilib/user/java/lib/navx_frc.jar</systemPath>
</dependency>
<dependency>
<groupId>jaci</groupId>
<artifactId>Pathfinder</artifactId>
<version>1.8</version>
<scope>system</scope>
<systemPath>${user.home}/wpilib/user/java/lib/Pathfinder-Java-1.8.jar</systemPath>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.13.0</version>
</dependency>
</dependencies>
</project>