Skip to content

Commit 6b0773f

Browse files
committed
Fixes typos
1 parent 2cee6ed commit 6b0773f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

wiki/Setup-Developer-Workstation.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,31 +25,31 @@ Java keystore is used for signing packages build time.
2525

2626
#### Create private key and certificate
2727

28-
The process creates an archive called **archetype.keystore-2.1.0** (artefact name + version) containing the generated files (**archetype.keystore**, **cert.pem**, **private_key.pem** ). The archive needs to be deployed on the artefact manager.
28+
The process creates an archive called **archetype.keystore-1.0.0** (artifact name + version) containing the generated files (**archetype.keystore**, **cert.pem**, **private_key.pem** ). The archive needs to be deployed on the artifact manager.
2929

3030
```sh
31-
mkdir -p ~/cert/archetype.keystore-2.1.0
32-
cd ~/cert/archetype.keystore-2.1.0
31+
mkdir -p ~/cert/archetype.keystore-1.0.0
32+
cd ~/cert/archetype.keystore-1.0.0
3333

3434
## Create the certificates and fill in the required country,state,location,organization details ...
3535
openssl req -newkey rsa:2048 -new -x509 -days 3650 -keyout private_key.pem -out cert.pem
3636
keytool -genkey -v -keystore archetype.keystore -alias _dunesrsa_alias_ -keyalg RSA -keysize 2048 -validity 10000
3737

3838
cd ~/cert
39-
zip archetype.keystore-2.1.0.zip -r archetype.keystore-2.1.0
39+
zip archetype.keystore-1.0.0.zip -r archetype.keystore-1.0.0
4040
```
4141
`Note:` Its very important to note that "Email" field should be EMPTY, otherwise the vRO import will break with 400 OK error
4242

4343
`Note:` JKS is a propriatary format specific to the particular JVM provider. When running above commands, ensure the keytool used is the one under the JVM that Maven would use (check with `mvn -v`).
4444

45-
#### Deploy the keystore artefact
45+
#### Deploy the keystore artifact
4646

47-
The artefact should be deployed to any path as long as the **settings.xml** file points to it.
47+
The artifact should be deployed to any path as long as the **settings.xml** file points to it.
4848

4949
Example:
50-
- artefact group ID: com.clientname.build
51-
- artefact ID: archetype.keystore
52-
- artefact version: 2.1.0
50+
- artifact group ID: com.clientname.build
51+
- artifact ID: archetype.keystore
52+
- artifact version: 1.0.0
5353
- **keystorePassword** and **vroKeyPass** passwords need to be replaced with the values used during the key generation process above
5454
- settings section:
5555
```xml

0 commit comments

Comments
 (0)