3 Star 37 Fork 8

@去/echarts4java

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 2.12 KB
一键复制 编辑 原始数据 按行查看 历史
yangchuanlong 提交于 2023-10-26 15:48 +08:00 . fix linux so not fond
<?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>
<groupId>top.magicpotato</groupId>
<artifactId>echarts4java</artifactId>
<version>1.0-SNAPSHOT</version>
<name>echarts4java</name>
<!-- FIXME change it to the project's website -->
<url>http://www.example.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
<dependencies>
</dependencies>
<build>
<!--设置打包后项目名称-->
<finalName>echarts4java</finalName>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<!-- 是否在文件名后面追加descriptor的id。-->
<!-- 例如值为true时,生成的文件名:slf-ds-jar-with-dependencies.jar -->
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<!-- 内置的:设置打包方式将所有依赖都打入 -->
<descriptorRef>jar-with-dependencies</descriptorRef>
<!--自定义的-->
<!-- <descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors> -->
</descriptorRefs>
<archive>
<manifest>
<!-- 此处指定main方法入口的class -->
<mainClass>top.magicpotato.App</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<!-- 配置执行器 -->
<execution>
<id>make-assembly</id>
<!-- 绑定到package生命周期,运行package命令就可以 -->
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/ychuanl/echarts4java.git
git@gitee.com:ychuanl/echarts4java.git
ychuanl
echarts4java
echarts4java
master

搜索帮助