调整依赖 和 linux 下 Docker 镜像
精简 jar 包
This commit is contained in:
parent
6ee3ac0283
commit
4389cfda43
@ -65,26 +65,104 @@
|
|||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- <dependency>-->
|
|
||||||
<!-- <groupId>org.bytedeco</groupId>-->
|
|
||||||
<!-- <artifactId>javacv-platform</artifactId>-->
|
|
||||||
<!-- <version>1.5.6</version>-->
|
|
||||||
<!-- </dependency>-->
|
|
||||||
|
|
||||||
<!-- https://mvnrepository.com/artifact/org.bytedeco/javacv -->
|
<!-- https://mvnrepository.com/artifact/org.bytedeco/javacv -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bytedeco</groupId>
|
<groupId>org.bytedeco</groupId>
|
||||||
<artifactId>javacv</artifactId>
|
<artifactId>javacv</artifactId>
|
||||||
<version>1.5.6</version>
|
<version>1.5.8</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.openjfx</groupId>
|
||||||
|
<artifactId>javafx-graphics</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>javacpp</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>openblas</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>opencv</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>tesseract</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>flycapture</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>libdc1394</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>libfreenect</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>libfreenect2</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>librealsense</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>librealsense2</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>videoinput</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>artoolkitplus</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>flandmark</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>leptonica</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- https://mvnrepository.com/artifact/org.bytedeco/ffmpeg-platform -->
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bytedeco</groupId>
|
<groupId>org.bytedeco</groupId>
|
||||||
<artifactId>ffmpeg-platform</artifactId>
|
<artifactId>javacpp</artifactId>
|
||||||
<version>4.4-1.5.6</version>
|
<version>1.5.8</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- https://mvnrepository.com/artifact/org.bytedeco/ffmpeg -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>ffmpeg</artifactId>
|
||||||
|
<version>5.1.2-1.5.8</version>
|
||||||
|
<classifier>windows-x86_64</classifier>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>javacpp</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>ffmpeg</artifactId>
|
||||||
|
<version>5.1.2-1.5.8</version>
|
||||||
|
<classifier>linux-x86_64</classifier>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>org.bytedeco</groupId>
|
||||||
|
<artifactId>javacpp</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM eclipse-temurin:17-jre-alpine
|
FROM eclipse-temurin:17-jre-focal
|
||||||
|
|
||||||
MAINTAINER Shikong <919411476@qq.com>
|
MAINTAINER Shikong <919411476@qq.com>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user