You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -43,23 +43,23 @@ The operator is built using [Apache Maven](http://maven.apache.org). The build
43
43
To build the operator, issue the following command in the project directory:
44
44
45
45
```
46
-
mvn clean install
46
+
$ mvn clean install
47
47
```
48
48
49
49
This will compile the source files, build JAR files containing the compiled classes and libraries needed to run the operator, and will also execute all of the unit tests.
50
50
51
51
Contributions must conform to [coding and formatting standards](#coding-standards). To automatically update local code to conform to formatting standards, issue the following command:
52
52
53
53
```
54
-
mvn fmt:format
54
+
$ mvn fmt:format
55
55
```
56
56
57
57
## Building Javadoc
58
58
59
59
To build the Javadoc for the operator, issue the following command:
60
60
61
61
```
62
-
mvn javadoc:javadoc
62
+
$ mvn javadoc:javadoc
63
63
```
64
64
65
65
The Javadoc is also available in the GitHub repository [here](https://oracle.github.io/weblogic-kubernetes-operator/apidocs/index.html).
@@ -78,10 +78,10 @@ If you're not running Kubernetes on your development machine, you'll need to mak
78
78
79
79
```
80
80
# on your build machine
81
-
docker save weblogic-kubernetes-operator:some-tag > operator.tar
Use the Helm charts to [install the operator](helm-charts.md).
@@ -96,7 +96,7 @@ The project includes integration tests that can be run against a Kubernetes clus
96
96
You will need to obtain the `kube.config` file for an administrative user and make it available on the machine running the build. To run the tests, update the `KUBECONFIG` environment varaible to point to your config file and then execute:
97
97
98
98
```
99
-
mvn clean verify -P java-integration-tests
99
+
$ mvn clean verify -P java-integration-tests
100
100
```
101
101
102
102
## Coding standards
@@ -172,7 +172,7 @@ Each `Step` has a reference to the next `Step` in the processing flow; however,
172
172
173
173
In this sample, the caller creates an `Engine`, `Fiber`, linked set of `Step` instances, and `Packet`. The `Fiber` is then started. The `Engine` would typically be a singleton, since it's backed by a `ScheduledExecutorService`. The `Packet` would also typically be pre-loaded with values that the `Steps` would use in their `apply()` methods.
0 commit comments