123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>iot-plugin</artifactId>
- <groupId>cc.iotkit</groupId>
- <version>0.5.1-SNAPSHOT</version>
- </parent>
- <groupId>com.gitee.starblues</groupId>
- <version>3.1.3</version>
- <artifactId>spring-brick-maven-packager</artifactId>
- <packaging>jar</packaging>
- <description>用于打包主程序/插件模块</description>
- <properties>
- <java.version>8</java.version>
- <maven.version>3.0.0</maven.version>
- <maven.compiler.source>${java.version}</maven.compiler.source>
- <maven.compiler.target>${java.version}</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
- <maven-plugin-api.version>3.8.4</maven-plugin-api.version>
- <maven-plugin-annotations.version>3.6.2</maven-plugin-annotations.version>
- <maven-common-artifact-filters.version>3.2.0</maven-common-artifact-filters.version>
- <commons-compress.version>1.21</commons-compress.version>
- <commons-io.version>2.11.0</commons-io.version>
- <lombok.version>1.18.20</lombok.version>
- <junit.version>3.8.1</junit.version>
- <maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version>
- </properties>
- <dependencies>
- <!-- common -->
- <dependency>
- <groupId>com.gitee.starblues</groupId>
- <artifactId>spring-brick-common</artifactId>
- <version>${spring-brick.version}</version>
- </dependency>
- <!-- maven api -->
- <dependency>
- <groupId>org.apache.maven</groupId>
- <artifactId>maven-plugin-api</artifactId>
- <version>${maven-plugin-api.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.maven.plugin-tools</groupId>
- <artifactId>maven-plugin-annotations</artifactId>
- <version>${maven-plugin-annotations.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.maven.shared</groupId>
- <artifactId>maven-common-artifact-filters</artifactId>
- <version>${maven-common-artifact-filters.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-compress</artifactId>
- <version>${commons-compress.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>${commons-io.version}</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${junit.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-plugin-plugin</artifactId>
- <version>${maven-plugin-plugin.version}</version>
- </plugin>
- </plugins>
- </build>
- </project>
|