123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?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>java-mcli</artifactId>
- <groupId>com.malk</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>mjava-aiwei</artifactId>
- <description>艾为电子, TBx宜搭</description>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <dependencies>
- <!-- 核心模块-->
- <dependency>
- <groupId>com.malk</groupId>
- <artifactId>mjava</artifactId>
- <version>${mjava.version}</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.1.1.RELEASE</version>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- <!-- 如果没有该配置,devtools不会生效: 打包时关闭 -->
- <fork>false</fork>
- <!-- 避免中文乱码 -->
- <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
- </configuration>
- <!-- 允许生成可运行jar -->
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <finalName>${project.artifactId}</finalName>
- </build>
- </project>
|