1 Star 0 Fork 5

zwkjhx / zero-energy

forked from zero-ws / zero-energy 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.50 KB
一键复制 编辑 原始数据 按行查看 历史
lang.yu 提交于 2023-09-04 08:08 . 1.0-SNAPSHOT Deployed
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>zero-ecosystem</artifactId>
<groupId>io.zerows</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>zero-energy</artifactId>
<packaging>pom</packaging>
<name>Zero Web</name>
<modules>
<module>zero-web</module>
<module>zero-osgi</module>
</modules>
<build>
<plugins>
<!-- Mojo -->
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.0</version>
</requireMavenVersion>
<requireJavaVersion>
<version>1.8</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${encoding}</encoding>
<!-- Disable annotation processing for ourselves. -->
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Tc.java</include>
<include>**/*Te.java</include>
</includes>
<excludes>
<exclude>**/Base*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zwkjhx/zero-energy.git
git@gitee.com:zwkjhx/zero-energy.git
zwkjhx
zero-energy
zero-energy
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891