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: lasso/docs/infrastructure/nexus.md
+27-6Lines changed: 27 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,15 +67,36 @@ You need to update LASSO's configuration file [corpus.json](https://github.com/S
67
67
68
68
You need to restart LASSO with the updated `corpus.json` configuration file. It might be necessary to update LASSO's Maven configuration in `lasso-work/repository/settings.xml` as well (alternatively, change or removing LASSO's existing work directory).
69
69
70
-
Note: For advanced use cases with LASSO, setting up a deployment _user_ is a better choice instead of using the admin user.
70
+
Note: For advanced use cases with LASSO, setting up a deployment _user_ is a better choice instead of using the admin user. Refer to Sonatype's official documentation to learn more.
71
71
72
-
## Deployment of LASSO's Support Libraries
72
+
## Deployment of LASSO's Support Libraries (Required)
73
73
74
-
Certain features of LASSO rely on deployed support libraries. To deploy them (see configuration above), run the following command to deploy all LASSO related artifacts to your local Nexus repository
74
+
Certain features of LASSO rely on LASSO-related support libraries that need to be deployed in your Nexus instance. This allows LASSO's facilities to access the required libraries.
75
+
76
+
### Global Maven Deployment Settings
77
+
78
+
Before proceeding, modify the password in `doc/nexus_config/settings_plugin_deploy.xml` (i.e., local LASSO repository) to match your custom Nexus password. An example of the modified file is shown below -
79
+
80
+
```xml
81
+
...
82
+
83
+
<servers>
84
+
<server>
85
+
<id>lasso_quickstart_nexus</id>
86
+
<username>admin</username>
87
+
<password>YOUR_NEXUS_PASSWORD</password>
88
+
</server>
89
+
</servers>
90
+
91
+
...
92
+
```
93
+
94
+
95
+
### Deploy LASSO Artifacts
96
+
97
+
To deploy all LASSO-related artifacts to your local Nexus repository, run the following command in your local LASSO repository -
0 commit comments