<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.7.12</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.ard</groupId>
|
<artifactId>ard-alarm</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>ard-alarm</name>
|
<description>ard-alarm</description>
|
<properties>
|
<java.version>1.8</java.version>
|
<docker.image.prefix>ard</docker.image.prefix>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter</artifactId>
|
</dependency>
|
<!-- netty依赖 springboot2.x自动导入版本 -->
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-all</artifactId>
|
</dependency>
|
<!--mqtt-->
|
<dependency>
|
<groupId>org.springframework.integration</groupId>
|
<artifactId>spring-integration-mqtt</artifactId>
|
<version>6.0.3</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba.fastjson2</groupId>
|
<artifactId>fastjson2</artifactId>
|
<version>2.0.23</version>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
|
<!--海康录像机二次开发依赖jar包-->
|
<dependency>
|
<groupId>net.java.jna</groupId>
|
<artifactId>jna</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>net.java.examples</groupId>
|
<artifactId>examples</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<!--MP代码生成器依赖-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-generator</artifactId>
|
<version>3.5.3.1</version>
|
</dependency>
|
<!--velocity模板引擎-->
|
<dependency>
|
<groupId>org.apache.velocity</groupId>
|
<artifactId>velocity-engine-core</artifactId>
|
<version>2.0</version>
|
</dependency>
|
<!--mybatis-plus依赖-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.5.1</version>
|
</dependency>
|
<!--Oracle jdbc-->
|
<!--这里注意,某些ojdbc的版本不支持jdk1.8,遇到过,网上说这个ojdbc8支持,所以这里使用它-->
|
<dependency>
|
<groupId>com.oracle.ojdbc</groupId>
|
<artifactId>ojdbc8</artifactId>
|
<version>19.3.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.oracle.database.nls</groupId>
|
<artifactId>orai18n</artifactId>
|
<version>21.1.0.0</version>
|
</dependency>
|
<!--minio依赖-->
|
<dependency>
|
<groupId>io.minio</groupId>
|
<artifactId>minio</artifactId>
|
<version>8.3.5</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.12.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.gavaghan</groupId>
|
<artifactId>geodesy</artifactId>
|
<version>1.1.3</version>
|
</dependency>
|
<!--druid依赖-->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>1.2.14</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.postgresql</groupId>
|
<artifactId>postgresql</artifactId>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<!-- 项目打包名称 -->
|
<finalName>ard_alarm</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<excludes>
|
<exclude>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</exclude>
|
</excludes>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>com.spotify</groupId>
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
<version>1.3.6</version>
|
<configuration>
|
<repository>${docker.image.prefix}/${project.artifactId}</repository>
|
<buildArgs>
|
<JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
|
</buildArgs>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.mybatis.generator</groupId>
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
<version>1.4.1</version>
|
<configuration>
|
<!--配置文件位置-->
|
<configurationFile>src/main/resources/GeneratorMapper.xml</configurationFile>
|
<verbose>true</verbose>
|
<overwrite>true</overwrite>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|