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
Copy file name to clipboardExpand all lines: details/integration_guide.md
+19-8Lines changed: 19 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,14 +25,20 @@ If you are using Maven as your build automation tool, you will need to make chan
25
25
<servers>
26
26
<server>
27
27
<id>repository-id</id>
28
-
<username>your-username</username>
29
-
<password>your-password</password>
28
+
<username>${env.USERNAME}</username>
29
+
<password>${env.PASSWORD}</password>
30
30
</server>
31
31
</servers>
32
32
</settings>
33
33
```
34
+
Set your credentials via the following enviromnent variables:
35
+
```bash
36
+
export USERNAME=your-username
37
+
export PASSWORD=your-password
38
+
```
39
+
Here ```your-username``` and ```your-password``` are your credentials mentioned in the Step 1.
34
40
35
-
In this configuration ```your-username``` and ```your-password``` are your credentials mentioed in the Step 1. You may choose an arbitrary allowed value instead of ```repository-id``` and use the same value in the following snippet from your `pom.xml` file:
41
+
You may choose an arbitrary allowed value instead of ```repository-id``` and use the same value in the following snippet from your `pom.xml` file:
36
42
```xml
37
43
<repositories>
38
44
<repository>
@@ -42,7 +48,7 @@ In this configuration ```your-username``` and ```your-password``` are your crede
42
48
</repositories>
43
49
```
44
50
An example of maven project your can find
45
-
[here](../examples/maven). Do not forget to replace credentials in ```.mvn/settings.xml``` file.
51
+
[here](../examples/maven). Do not forget to set the enviromnet variables.
46
52
#### Gradle
47
53
48
54
If you are using Gradle as your build automation tool, make sure to include the following configuration in your project setup:
0 commit comments