2019-09-10 21:52:13 +03:00
|
|
|
<?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/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>org.chameleon-vision.main</groupId>
|
|
|
|
|
<artifactId>chameleon-vision</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2019-09-10 22:03:05 +03:00
|
|
|
<!--setup for java jdk 12-->
|
2019-09-10 21:52:13 +03:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.8.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<release>12</release>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2019-09-15 20:35:59 -04:00
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
</properties>
|
2019-09-10 21:52:13 +03:00
|
|
|
<repositories>
|
2019-09-10 22:03:05 +03:00
|
|
|
<!--WPI official maven repo for frc libs-->
|
2019-09-10 21:52:13 +03:00
|
|
|
<repository>
|
|
|
|
|
<id>WPI</id>
|
|
|
|
|
<name>WPI Maven repo</name>
|
|
|
|
|
<url>https://first.wpi.edu/FRC/roborio/maven/release</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
<dependencies>
|
2019-09-10 22:03:05 +03:00
|
|
|
<!--javalin micro webservices framework-->
|
2019-09-15 20:35:59 -04:00
|
|
|
<dependency>
|
2019-09-10 21:52:13 +03:00
|
|
|
<groupId>io.javalin</groupId>
|
|
|
|
|
<artifactId>javalin</artifactId>
|
|
|
|
|
<version>3.4.1</version>
|
|
|
|
|
</dependency>
|
2019-09-15 20:35:59 -04:00
|
|
|
|
|
|
|
|
<!--org.json from saving and loading data-->
|
2019-09-10 21:52:13 +03:00
|
|
|
<dependency>
|
2019-09-10 22:03:05 +03:00
|
|
|
<groupId>org.json</groupId>
|
|
|
|
|
<artifactId>json</artifactId>
|
2019-09-15 20:35:59 -04:00
|
|
|
<version>20190722</version>
|
2019-09-10 22:03:05 +03:00
|
|
|
</dependency>
|
2019-09-15 20:35:59 -04:00
|
|
|
|
|
|
|
|
<!--slf4j for javalin -->
|
2019-09-10 23:47:06 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
<version>1.7.26</version>
|
|
|
|
|
</dependency>
|
2019-09-15 20:35:59 -04:00
|
|
|
|
|
|
|
|
<!--apache common classes libs-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-math3</artifactId>
|
|
|
|
|
<version>3.6.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--google json save and load library-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
<version>2.8.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--what is this for again?-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
<version>5.1.9.RELEASE</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- supported platforms for wpilib JNI classifiers
|
|
|
|
|
linuxathena
|
|
|
|
|
linuxraspbian
|
|
|
|
|
linuxx86-64
|
|
|
|
|
windowsx86-64
|
|
|
|
|
-->
|
|
|
|
|
<!--frc cscore java libs-->
|
2019-09-10 22:03:05 +03:00
|
|
|
<dependency>
|
2019-09-10 21:52:13 +03:00
|
|
|
<groupId>edu.wpi.first.cscore</groupId>
|
|
|
|
|
<artifactId>cscore-java</artifactId>
|
2019-09-15 20:35:59 -04:00
|
|
|
<version>2019.4.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--frc cscore interface libs-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.wpi.first.cscore</groupId>
|
|
|
|
|
<artifactId>cscore-jni</artifactId>
|
|
|
|
|
<version>2019.4.1</version>
|
|
|
|
|
<classifier>linuxathena</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.wpi.first.cscore</groupId>
|
|
|
|
|
<artifactId>cscore-jni</artifactId>
|
|
|
|
|
<version>2019.4.1</version>
|
|
|
|
|
<classifier>linuxraspbian</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.wpi.first.cscore</groupId>
|
|
|
|
|
<artifactId>cscore-jni</artifactId>
|
|
|
|
|
<version>2019.4.1</version>
|
|
|
|
|
<classifier>linuxx86-64</classifier>
|
2019-09-10 21:52:13 +03:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2019-09-13 02:45:11 +03:00
|
|
|
<groupId>edu.wpi.first.cscore</groupId>
|
|
|
|
|
<artifactId>cscore-jni</artifactId>
|
2019-09-15 20:35:59 -04:00
|
|
|
<version>2019.4.1</version>
|
|
|
|
|
<classifier>windowsx86-64</classifier>
|
2019-09-13 02:45:11 +03:00
|
|
|
</dependency>
|
2019-09-15 20:35:59 -04:00
|
|
|
|
|
|
|
|
<!--frc camera server libs-->
|
2019-09-13 02:45:11 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.wpi.first.cameraserver</groupId>
|
|
|
|
|
<artifactId>cameraserver-java</artifactId>
|
2019-09-15 20:35:59 -04:00
|
|
|
<version>2019.4.1</version>
|
2019-09-13 02:45:11 +03:00
|
|
|
</dependency>
|
2019-09-15 20:35:59 -04:00
|
|
|
|
|
|
|
|
<!--frc network table java libs-->
|
2019-09-13 02:45:11 +03:00
|
|
|
<dependency>
|
2019-09-10 21:52:13 +03:00
|
|
|
<groupId>edu.wpi.first.ntcore</groupId>
|
|
|
|
|
<artifactId>ntcore-java</artifactId>
|
2019-09-15 20:35:59 -04:00
|
|
|
<version>2019.4.1</version>
|
2019-09-10 21:52:13 +03:00
|
|
|
</dependency>
|
2019-09-15 20:35:59 -04:00
|
|
|
|
|
|
|
|
<!--frc network tables interface libs-->
|
2019-09-10 21:52:13 +03:00
|
|
|
<dependency>
|
2019-09-13 02:45:11 +03:00
|
|
|
<groupId>edu.wpi.first.ntcore</groupId>
|
|
|
|
|
<artifactId>ntcore-jni</artifactId>
|
2019-09-15 20:35:59 -04:00
|
|
|
<version>2019.4.1</version>
|
|
|
|
|
<classifier>linuxathena</classifier>
|
2019-09-13 02:45:11 +03:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2019-09-15 20:35:59 -04:00
|
|
|
<groupId>edu.wpi.first.ntcore</groupId>
|
|
|
|
|
<artifactId>ntcore-jni</artifactId>
|
|
|
|
|
<version>2019.4.1</version>
|
|
|
|
|
<classifier>linuxraspbian</classifier>
|
2019-09-10 21:52:13 +03:00
|
|
|
</dependency>
|
2019-09-12 23:23:36 +03:00
|
|
|
<dependency>
|
2019-09-15 20:35:59 -04:00
|
|
|
<groupId>edu.wpi.first.ntcore</groupId>
|
|
|
|
|
<artifactId>ntcore-jni</artifactId>
|
|
|
|
|
<version>2019.4.1</version>
|
|
|
|
|
<classifier>linuxx86-64</classifier>
|
2019-09-12 23:23:36 +03:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2019-09-15 20:35:59 -04:00
|
|
|
<groupId>edu.wpi.first.ntcore</groupId>
|
|
|
|
|
<artifactId>ntcore-jni</artifactId>
|
|
|
|
|
<version>2019.4.1</version>
|
|
|
|
|
<classifier>windowsx86-64</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--frc java libs-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.wpi.first.wpiutil</groupId>
|
|
|
|
|
<artifactId>wpiutil-java</artifactId>
|
|
|
|
|
<version>2019.4.1</version>
|
2019-09-12 23:23:36 +03:00
|
|
|
</dependency>
|
2019-09-15 20:35:59 -04:00
|
|
|
|
|
|
|
|
<!-- WPI OpenCV for all supported platforms -->
|
2019-09-15 01:55:29 +03:00
|
|
|
<dependency>
|
2019-09-15 13:58:45 +03:00
|
|
|
<groupId>edu.wpi.first.thirdparty.frc2019.opencv</groupId>
|
|
|
|
|
<artifactId>opencv-java</artifactId>
|
|
|
|
|
<version>3.4.4-5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.wpi.first.thirdparty.frc2019.opencv</groupId>
|
|
|
|
|
<artifactId>opencv-jni</artifactId>
|
|
|
|
|
<version>3.4.4-5</version>
|
|
|
|
|
<classifier>windowsx86-64</classifier>
|
2019-09-15 20:35:59 -04:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2019-09-15 13:58:45 +03:00
|
|
|
<groupId>edu.wpi.first.thirdparty.frc2019.opencv</groupId>
|
|
|
|
|
<artifactId>opencv-jni</artifactId>
|
|
|
|
|
<version>3.4.4-5</version>
|
|
|
|
|
<classifier>linuxx86-64</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.wpi.first.thirdparty.frc2019.opencv</groupId>
|
|
|
|
|
<artifactId>opencv-jni</artifactId>
|
|
|
|
|
<version>3.4.4-5</version>
|
|
|
|
|
<classifier>linuxathena</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.wpi.first.thirdparty.frc2019.opencv</groupId>
|
|
|
|
|
<artifactId>opencv-jni</artifactId>
|
|
|
|
|
<version>3.4.4-5</version>
|
|
|
|
|
<classifier>linuxraspbian</classifier>
|
|
|
|
|
</dependency>
|
2019-09-16 18:50:00 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
<version>2.10.0.pr1</version>
|
|
|
|
|
</dependency>
|
2019-09-10 21:52:13 +03:00
|
|
|
</dependencies>
|
2019-09-15 15:13:29 -04:00
|
|
|
</project>
|