<?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.htfp</groupId> <artifactId>weather-service</artifactId> <version>0.0.3</version> <name>weather-service</name> <description>weather-service</description> <packaging>jar</packaging> <!--声明父模块--> <parent> <groupId>com.htfp</groupId> <artifactId>weather</artifactId> <version>0.0.1</version> <relativePath>../pom.xml</relativePath> </parent> <properties> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <spring-boot.version>2.6.13</spring-boot.version> </properties> <repositories> <repository> <id>unidata-all</id> <name>Unidata All</name> <url>https://artifacts.unidata.ucar.edu/repository/unidata-all/</url> </repository> </repositories> <dependencies> <dependency> <groupId>edu.ucar</groupId> <artifactId>cdm-core</artifactId> <version>5.5.3</version> </dependency> <dependency> <groupId>edu.ucar</groupId> <artifactId>grib</artifactId> <version>5.5.3</version> </dependency> <dependency> <groupId>com.aliyun.openservices</groupId> <artifactId>tablestore</artifactId> <version>5.16.0</version> <classifier>jar-with-dependencies</classifier> <exclusions> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpasyncclient</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.aliyun.tablestore</groupId> <artifactId>tablestore-grid</artifactId> <version>1.1-SNAPSHOT</version> </dependency> <!-- <dependency>--> <!-- <groupId>ai.djl</groupId>--> <!-- <artifactId>api</artifactId>--> <!-- <version>0.27.0</version>--> <!-- </dependency>--> <!-- <dependency>--> <!-- <groupId>ai.djl.pytorch</groupId>--> <!-- <artifactId>pytorch-engine</artifactId>--> <!-- <version>0.27.0</version>--> <!-- </dependency>--> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.11.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> <dependency> <groupId>org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!--? <dependency>--> <!--? <groupId>org.springframework.boot</groupId>--> <!--? <artifactId>spring-boot-starter-thymeleaf</artifactId>--> <!--? </dependency>--> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.9.0</version> <!-- 去掉Android的包 --> <exclusions> <exclusion> <groupId>com.google.android</groupId> <artifactId>android</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <!-- springmvc的参数valid校验依赖 开始 --> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>2.0.1.Final</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>6.0.16.Final</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <!-- springmvc的参数valid校验依赖 结束 --> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <!-- 指定该Main Class为全局的唯一入口 --> <mainClass>com.htfp.weather.WeatherServiceApplication</mainClass> <layout>ZIP</layout> <!--打包排除所有jar包--> <includes> <include> <groupId>nothing</groupId> <artifactId>nothing</artifactId> </include> </includes> <!--打包排除所有jar包--> </configuration> <executions> <execution> <goals> <!--可以把依赖的包都打包到生成的Jar包中--> <goal>repackage</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> </project>