Files

124 lines
3.7 KiB
XML
Raw Permalink Normal View History

2023-04-21 13:23:33 +08: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 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>
2023-04-25 10:23:43 +08:00
<distributionManagement>
<repository>
<id>nexus-releases</id>
<name>Nexus Release Repository</name>
2024-01-16 13:52:36 +08:00
<url>http://192.168.1.22:8001/nexus/content/repositories/releases/</url>
2023-04-25 10:23:43 +08:00
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>Nexus Snapshot Repository</name>
2024-01-16 13:52:36 +08:00
<url>http://192.168.1.22:8001/nexus/content/repositories/snapshots/</url>
2023-04-25 10:23:43 +08:00
</snapshotRepository>
</distributionManagement>
2023-04-21 13:23:33 +08:00
<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>
2023-09-26 18:07:48 +08:00
<influxdb-java.version>2.18</influxdb-java.version>
2023-04-21 13:23:33 +08:00
</properties>
<developers>
<developer>
<name>hongawen</name>
<email>83944980@qq.com</email>
</developer>
</developers>
<dependencies>
2023-09-07 14:47:44 +08:00
2024-01-16 13:52:36 +08:00
<!-- <dependency>-->
<!-- <groupId>com.njcn</groupId>-->
<!-- <artifactId>common-core</artifactId>-->
<!-- <version>1.0.0</version>-->
<!-- </dependency>-->
<!--java简化开发工具-->
2023-04-21 13:23:33 +08:00
<dependency>
2024-01-16 13:52:36 +08:00
<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>
2023-04-21 13:23:33 +08:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
<version>${configuration-processor.version}</version>
</dependency>
2024-01-16 13:52:36 +08:00
<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后端配置类报红-->
2023-04-21 13:23:33 +08:00
<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>
2023-04-25 10:23:43 +08:00
<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>
2023-04-21 13:23:33 +08:00
</plugin>
</plugins>
</build>
</project>