- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章maven 使用assembly 进行打包的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
1. pom 中添加assembly 插件 。
要使用assembly 进项编译打包, 首先主要在pom 中的build中添加插件信息, 具体如图下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<
build
>
<
finalName
>${project.artifactId}</
finalName
>
<
sourceDirectory
>src/main/java</
sourceDirectory
>
<
resources
>
<
resource
>
<
directory
>src/main/resources</
directory
>
<
filtering
>true</
filtering
>
<
includes
>
<
include
>**/*.xml</
include
>
<
include
>**/*.properties</
include
>
</
includes
>
</
resource
>
<
resource
>
<
directory
>${profile.dir}</
directory
>
<
filtering
>true</
filtering
>
</
resource
>
</
resources
>
<
plugins
>
<!-- compiler插件参数设置,指定编码 -->
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>3.1</
version
>
<
configuration
>
<
source
>1.8</
source
>
<
target
>1.8</
target
>
<
encoding
>utf-8</
encoding
>
</
configuration
>
</
plugin
>
<!-- 这个插件是关键 -->
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-assembly-plugin</
artifactId
>
<
configuration
>
<!-- 这个是assembly 所在位置 -->
<
descriptor
>src/main/assembly/assembly.xml</
descriptor
>
</
configuration
>
<
executions
>
<
execution
>
<
id
>make-assembly</
id
>
<
phase
>package</
phase
>
<
goals
>
<
goal
>single</
goal
>
</
goals
>
</
execution
>
</
executions
>
</
plugin
>
</
plugins
>
</
build
>
|
2. 创建assembly文件夹和assembly.xml文件 。
创建assembly文件夹和assembly.xml文件, 这个样子创建主要是规范。 。
在pom 中已经介绍assembly.xml 位置.
1
2
|
<!-- 这个是assembly 所在位置 -->
<
descriptor
>src/main/assembly/assembly.xml</
descriptor
>
|
创建assembly.xml 文件后添加如下内容:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<
assembly
>
<
formats
>
<!--支持 zip,tar,tar.gz,tar.bz2,jar,dir,war 等 -->
<
format
>tar.gz</
format
>
<
format
>zip</
format
>
<
format
>dir</
format
>
</
formats
>
<
includeBaseDirectory
>false</
includeBaseDirectory
>
<
fileSets
>
<
fileSet
>
<
directory
>src/main/resources</
directory
>
<
outputDirectory
>conf</
outputDirectory
>
<
fileMode
>0644</
fileMode
>
</
fileSet
>
<
fileSet
>
<
directory
>${profile.dir}</
directory
>
<
outputDirectory
>conf</
outputDirectory
>
<!-- 表示的是包含下面格式的资源文件 -->
<
includes
>
<
include
>*.xml</
include
>
<
include
>*.properties</
include
>
<
include
>**/*.xml</
include
>
<
include
>**/*.properties</
include
>
</
includes
>
<
fileMode
>0644</
fileMode
>
</
fileSet
>
<
fileSet
>
<
directory
>src/main/assembly/bin</
directory
>
<
outputDirectory
>bin</
outputDirectory
>
<
fileMode
>0755</
fileMode
>
</
fileSet
>
</
fileSets
>
<
dependencySets
>
<
dependencySet
>
<
outputDirectory
>lib</
outputDirectory
>
</
dependencySet
>
</
dependencySets
>
</
assembly
>
|
fileMode 官方解释:
Similar to a UNIX permission, sets the file mode of the files included. THIS IS AN OCTAL VALUE. Format: (User)(Group)(Other) where each component is a sum of Read = 4, Write = 2, and Execute = 1. For example, the value 0644 translates to User read-write, Group and Other 。
上述的三个fileSet 分别是将resource 下的资源打包到config 目录下, 将assembly下的bin 启动相关脚本打包到bin 目录下, 将maven项目依赖的所有jar 包, 打包到lib 中。 。
具体结构如下图所示:
参考地址: http://maven.apache.org/plugins/maven-assembly-plugin/assembly.html 。
zip.xml 文件配置如下 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<
assembly
xmlns
=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi
=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation
=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"
>
<
id
>release</
id
>
<
formats
>
<
format
>zip</
format
>
</
formats
>
<
fileSets
>
<
fileSet
>
<
directory
>${project.basedir}\src\main\config</
directory
>
<!-- 过滤 -->
<
excludes
>
<
exclude
>*.xml</
exclude
>
</
excludes
>
<
outputDirectory
>\</
outputDirectory
>
</
fileSet
>
</
fileSets
>
<
dependencySets
>
<
dependencySet
>
<
useProjectArtifact
>true</
useProjectArtifact
>
<
outputDirectory
>lib</
outputDirectory
>
<!-- 将scope为runtime的依赖包打包到lib目录下。 -->
<
scope
>runtime</
scope
>
</
dependencySet
>
</
dependencySets
>
</
assembly
>
|
例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<
assembly
>
<
id
>assembly</
id
>
<
formats
>
<
format
>tar.gz</
format
>
</
formats
>
<
includeBaseDirectory
>true</
includeBaseDirectory
>
<
fileSets
>
<
fileSet
>
<
directory
>${project.build.directory}/resources</
directory
>
<
outputDirectory
>resources</
outputDirectory
>
<
fileMode
>0755</
fileMode
>
</
fileSet
>
<
fileSet
>
<
directory
>${project.build.directory}/config</
directory
>
<
outputDirectory
>config</
outputDirectory
>
<
fileMode
>0644</
fileMode
>
</
fileSet
>
<
fileSet
>
<
directory
>${project.build.directory}/bin</
directory
>
<
outputDirectory
>bin</
outputDirectory
>
<
fileMode
>0755</
fileMode
>
</
fileSet
>
</
fileSets
>
<
dependencySets
>
<
dependencySet
>
<
outputDirectory
>lib</
outputDirectory
>
</
dependencySet
>
</
dependencySets
>
</
assembly
>
|
到此这篇关于maven 使用assembly 进行打包的方法的文章就介绍到这了,更多相关maven assembly打包内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://blog.csdn.net/zhongzunfa/article/details/82465939 。
最后此篇关于maven 使用assembly 进行打包的方法的文章就讲到这里了,如果你想了解更多关于maven 使用assembly 进行打包的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我被告知“汇编”是您在文件中编写的内容,让您的“汇编程序”将其转换为二进制代码。 但我看到这两个术语在各种作品中混合搭配。我什至听说你编写了“汇编器”,然后“汇编器”使其可执行。 正确的用词是什么?
我在正确终止用 Assembly 编写的 16 位 DOS 程序时遇到问题。这是部分代码: .386P .model flat stack_s segment stack 'stack'
我需要多少档才能正确执行以下指令。我对我所做的事情有些困惑,所以我在这里看到专家的答案。 lw $1,0($2); beq $1,$2,Label; 请注意,检查是否会发生分支将在解码阶段完成。但是在
我正在尝试在汇编中进行简单的乘法运算,但是由于某些原因,当标记了MUL函数时,我看不到寄存器会发生变化。 mov bx, 5 mov cx, 10 mul cx 最佳答案 这些称为指令,它们指定
我正在尝试在 Assembly 中实现递归斐波那契程序。但是,我的程序崩溃了,出现了未处理的异常,我似乎无法找出问题所在。我不怀疑这涉及我对堆栈的不当使用,但我似乎无法指出哪里...... .386
我编写了以下代码: .386 .model small .stack 100h .data text db "Paper",0 .code start : lea dx ,
我有一个用汇编语言编写的裸机 ARM 的启动代码,我正在尝试了解它是如何工作的。该二进制文件被写入一些外部闪存中,并在启动时将其自身的一部分复制到 RAM 中。尽管我读过这篇文章wikipedia e
我在数据部分定义了一个二维数组和两个一维数组(一个用于列总和,一个用于行总和),并且我编写了一个函数,将二维数组求和到一维数组中。我使用 eax 和 ebx 作为二维数组的索引,但是当 eax 或 e
我正在开始组装,我正在使用 nasm 来组装代码,我正在尝试处理驻留在内存中的字符串并更改它,我想检查一个字节是否在某个范围内(ascii),这样我就可以决定如何处理它,我似乎不知道如何检查一个值是否
虽然您通常不希望将一个整体程序集用于小型项目以外的任何事情,但可能会将事物分离得太多。 组装分离过多的迹象/气味是什么? 最佳答案 第一个(明显的)是:在一个有很多项目的解决方案中,其中只有少数(比如
我正在尝试编写斐波那契的汇编代码版本,它给出第 n 个斐波那契数并返回它。 出于某种原因,它在存储斐波那契数的返回值和添加它们时遇到问题。 我希望它打印第 n 个斐波那契数。 我对我的代码做了一些修改
我有一个最小的、可重现的示例有两个问题,该示例具有三个针对 .NET Core 3.1 的项目。但我也想以 .NET Standard 2.0 为目标。 该示例适用于需要在运行时加载程序集并使用提供的
: 运算符在汇编中做什么?代码如下:DS:DX我还没有找到该运算符(operator)的任何文档。(我正在使用 NASM) 最佳答案 那实际上只是一个寄存器分隔符,而不是运算符。这意味着使用 DX 寄
我在哪里可以找到为 gmp-5.0.0 编写的程序的汇编代码我正在使用 UBUNTU 和 G++ 编译器..编译代码的命令是“g++ test.cc -o outp -lgmp” 实际上我想知道在 1
我是组装新手,我有一个关于如何表示负数的问题 我有三个 DWORDS 变量,比如说: result DWORD 0 i DWORD 3 j DWORD 5 我想计算这个公式:result = i -
我想编写我的第一个汇编程序。我在论文上做了一些程序,但这是我第一次使用编译器。我正在使用 ideone .我的程序很简单, 翻译 A = 5 - A到 assembly NEG A ADD A, 5
程序集,masm 嘿,我写了宏来打印存储在 dane1 段中的 1 字节值。 我将值除以 16,然后将提醒推送到堆栈,直到值==0。然后我弹出提醒将它们转换为 ASCII 码,并打印它们。 有人可以看
我正在研究 nasm 的一个大学项目。唯一的问题是我无法生成 162 和 278 之间的偶数随机数。我尝试了很多算法,但似乎无法限制范围内的数字。 是否有一个小技巧或调整来获得所需的范围内的数字?目的
终于在无数次错误的漫长 session 之后,希望这是最后一个。 没有编译或运行时错误,只是一个逻辑错误。 编辑:(固定伪代码) 我的伪代码: first = 1; second = 1; thir
我知道在程序集r0中调用函数时,包含第一个参数,直到r3是第四个。我知道,当它超过四个时,将使用堆栈指针,但是我不太确定具体细节。 r0-r3仍然保持前四个,其余的进入堆栈吗?我正在看下面的程序集,试
我是一名优秀的程序员,十分优秀!