File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ :link_attrs:
2
+
3
+ ifndef::yarn_base_appmaster[:yarn_base_appmaster: appmaster]
4
+ ifndef::yarn_base_container[:yarn_base_container: container]
5
+ ifndef::yarn_base_client[:yarn_base_client: client]
6
+ ifndef::yarn_base_dist[:yarn_base_dist: dist]
7
+
8
+ == Build the Application
9
+
10
+ For gradle simply execute a `clean` and `build` commands.
11
+ [source,text]
12
+ ----
13
+ ./gradlew clean build
14
+ ----
15
+
16
+ To skip existing tests if any:
17
+ [source,text]
18
+ ----
19
+ ./gradlew clean build -x test
20
+ ----
21
+
22
+ For maven simply execute a `clean` and `package` commands.
23
+ [source,text]
24
+ ----
25
+ mvn clean package
26
+ ----
27
+
28
+ To skip existing tests if any:
29
+ [source,text]
30
+ ----
31
+ mvn clean package -DskipTests=true
32
+ ----
33
+
34
+ Below listing shows files after a succesfull gradle build.
35
+
36
+ [subs="attributes"]
37
+ ----
38
+ {yarn_base_dist}/target/{yarn_base_dist}/{yarn_base_client}-0.1.0.jar
39
+ {yarn_base_dist}/target/{yarn_base_dist}/{yarn_base_appmaster}-0.1.0.jar
40
+ {yarn_base_dist}/target/{yarn_base_dist}/{yarn_base_container}-0.1.0.jar
41
+ ----
42
+
You can’t perform that action at this time.
0 commit comments