123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>huimv.eartag2.new</artifactId>
- <groupId>com.huimv</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <!-- <packaging>pom</packaging>-->
- <packaging>jar</packaging>
- <artifactId>huimv-eartag2-common</artifactId>
- <version>0.0.2-SNAPSHOT</version>
- <!-- <distributionManagement>-->
- <!-- <repository>-->
- <!-- <id>rdc-releases</id>-->
- <!-- <url>https://repo.rdc.aliyun.com/repository/136471-release-drEU5y/</url>-->
- <!-- </repository>-->
- <!-- <snapshotRepository>-->
- <!-- <id>rdc-snapshots</id>-->
- <!-- <url>https://repo.rdc.aliyun.com/repository/136471-snapshot-WhviYl/</url>-->
- <!-- </snapshotRepository>-->
- <!-- </distributionManagement>-->
- <dependencies>
- <dependency>
- <groupId>com.auth0</groupId>
- <artifactId>java-jwt</artifactId>
- <version>3.3.0</version>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>0.9.1</version>
- </dependency>
- <dependency>
- <groupId>com.belerweb</groupId>
- <artifactId>pinyin4j</artifactId>
- <version>2.5.1</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.6</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>3.4.2</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-extension</artifactId>
- <version>3.4.2</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- <version>3.2.0</version>
- </dependency>
- <dependency>
- <groupId>net.sf.json-lib</groupId>
- <artifactId>json-lib</artifactId>
- <version>2.2.3</version>
- <classifier>jdk15</classifier>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.tomcat.embed</groupId>
- <artifactId>tomcat-embed-core</artifactId>
- </dependency>
- </dependencies>
- <!-- 后加 -->
- <!-- <build>-->
- <!-- <resources>-->
- <!-- <resource>-->
- <!-- <directory>src/main/java</directory>-->
- <!-- <includes>-->
- <!-- <include>**/*.*</include>-->
- <!-- </includes>-->
- <!-- <excludes>-->
- <!-- <exclude>**/*.java</exclude>-->
- <!-- </excludes>-->
- <!-- <filtering>false</filtering>-->
- <!-- </resource>-->
- <!-- </resources>-->
- <!-- <plugins>-->
- <!-- <plugin>-->
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
- <!-- <artifactId>maven-compiler-plugin</artifactId>-->
- <!-- <configuration>-->
- <!-- <source>8</source>-->
- <!-- <target>8</target>-->
- <!-- </configuration>-->
- <!-- </plugin>-->
- <!-- <plugin>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
- <!-- <configuration>-->
- <!-- <!–-->
- <!-- 1. 这里要指定你的springboot项目的主启动类的全类名-->
- <!-- 2. 大家不要把这个插件放到父项目的依赖中,哪个项目需要打包,就放到哪个项目的依赖下-->
- <!-- –>-->
- <!-- <mainClass>com.huimv.eartag2.common</mainClass>-->
- <!-- </configuration>-->
- <!-- </plugin>-->
- <!-- </plugins>-->
- <!-- </build>-->
- <!-- <build>-->
- <!-- <finalName>${project.artifactId}</finalName>-->
- <!-- </build>-->
- <!-- <build>-->
- <!-- <plugins>-->
- <!-- <!– –>-->
- <!-- <plugin>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
- <!-- </plugin>-->
- <!-- <!– –>-->
- <!-- <plugin>-->
- <!-- <groupId>org.apache.maven.plugins</groupId>-->
- <!-- <artifactId>maven-resources-plugin</artifactId>-->
- <!-- <version>2.6</version>-->
- <!-- </plugin>-->
- <!-- </plugins>-->
- <!-- </build>-->
- </project>
|