124 lines
3.7 KiB
XML
124 lines
3.7 KiB
XML
<?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>
|
||
<groupId>com.njcn</groupId>
|
||
<artifactId>influxdb-springboot-starter</artifactId>
|
||
<version>1.0.0</version>
|
||
<distributionManagement>
|
||
<repository>
|
||
<id>nexus-releases</id>
|
||
<name>Nexus Release Repository</name>
|
||
<url>http://192.168.1.22:8001/nexus/content/repositories/releases/</url>
|
||
</repository>
|
||
<snapshotRepository>
|
||
<id>nexus-snapshots</id>
|
||
<name>Nexus Snapshot Repository</name>
|
||
<url>http://192.168.1.22:8001/nexus/content/repositories/snapshots/</url>
|
||
</snapshotRepository>
|
||
</distributionManagement>
|
||
<name>influxdb-springboot-starter</name>
|
||
<description>封装influxdb的orm工具</description>
|
||
<properties>
|
||
<java.version>1.8</java.version>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<configuration-processor.version>2.3.12.RELEASE</configuration-processor.version>
|
||
<autoconfigure.version>2.0.0.RELEASE</autoconfigure.version>
|
||
<influxdb-java.version>2.18</influxdb-java.version>
|
||
</properties>
|
||
|
||
<developers>
|
||
<developer>
|
||
<name>hongawen</name>
|
||
<email>83944980@qq.com</email>
|
||
</developer>
|
||
</developers>
|
||
|
||
<dependencies>
|
||
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.njcn</groupId>-->
|
||
<!-- <artifactId>common-core</artifactId>-->
|
||
<!-- <version>1.0.0</version>-->
|
||
<!-- </dependency>-->
|
||
<!--java简化开发工具-->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>1.18.18</version>
|
||
</dependency>
|
||
<!--java工具包-->
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
<version>5.8.11</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
<optional>true</optional>
|
||
<version>${configuration-processor.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-json</artifactId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.apache.logging.log4j</groupId>
|
||
<artifactId>log4j-to-slf4j</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
<version>${configuration-processor.version}</version>
|
||
</dependency>
|
||
<!-- Actuator监控当前应用的健康,虚拟机等信息,通过前端以可视化的界面展示出来 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
<version>${configuration-processor.version}</version>
|
||
</dependency>
|
||
<!--避免idea后端配置类报红-->
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-autoconfigure</artifactId>
|
||
<version>${autoconfigure.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.influxdb</groupId>
|
||
<artifactId>influxdb-java</artifactId>
|
||
<version>${influxdb-java.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.8.1</version>
|
||
<configuration>
|
||
<source>1.8</source>
|
||
<target>1.8</target>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-source-plugin</artifactId>
|
||
<version>2.2.1</version>
|
||
<executions>
|
||
<execution>
|
||
<id>attach-sources</id>
|
||
<goals>
|
||
<goal>jar-no-fork</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
|
||
|
||
|
||
</project>
|