-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdockerCache.xml
85 lines (73 loc) · 3.03 KB
/
dockerCache.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?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>org.com.example</groupId>
<artifactId>compiler</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<!-- <modules>-->
<!-- <module>pavac</module>-->
<!-- <module>pava</module>-->
<!-- <module>main</module>-->
<!-- </modules>-->
<properties>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<configuration>
<!-- 这个archive以及archive里面的设置很重要,没有这个配置,就无法生成可执行jar文件 -->
<archive>
<manifest>
<mainClass>com.example.client.pava.Pavac</mainClass>
</manifest>
</archive>
<!-- 这个jar-with-dependencies是这个插件中预置的,不用管它,尽管用就好了 -->
<!-- 当然,你也可以用自己的descriptor。如何用?自己去查这个插件的文档 -->
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- 这里的phase和goals都是maven的基础概念,不懂的可以去看maven的文档 -->
<!-- 总之,当你install你的project的时候,是会涵盖package phase和single goal的 -->
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>