forked from FRC-Dozer/Dozer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
27 lines (27 loc) · 823 Bytes
/
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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.frc-dozer</groupId>
<artifactId>dozer</artifactId>
<version>2018.0.1</version>
<repositories>
<repository>
<id>wpilib</id>
<name>WPILib</name>
<url>http://first.wpi.edu/FRC/roborio/maven/release</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>edu.wpi.first.wpilibj</groupId>
<artifactId>wpilibj-java</artifactId>
<version>2018.2.2</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<finalName>Dozer</finalName>
</build>
</project>