12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?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>
- <!-- mjava版本, 不同java-cli项目区分底层依赖, 使用变量有警告 -->
- <version>0.0.3</version>
- <artifactId>mjava</artifactId>
- <description>mjava framework</description>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <dependencies>
- </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 再执行 install 到本地 maven. 若开启即可作为独立 jar 运行 -->
- <executions>
- <execution>
- <goals>
- <!-- <goal>repackage</goal>-->
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <finalName>${project.artifactId}</finalName>
- </build>
- </project>
|