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
artifactory_access_token = var.artifactory_access_token # An admin access token
@@ -50,24 +51,27 @@ module "jfrog" {
50
51
go = ["go-local"]
51
52
pypi = ["pypi-local"]
52
53
conda = ["conda-local"]
54
+
maven = ["maven-local"]
53
55
}
54
56
}
55
57
```
56
58
57
-
You should now be able to install packages from Artifactory using both the `jf npm`, `jf go`, `jf pip` and `npm`, `go`, `pip`, `conda` commands.
59
+
You should now be able to install packages from Artifactory using both the `jf npm`, `jf go`, `jf pip` and `npm`, `go`, `pip`, `conda`, `maven` commands.
58
60
59
61
```shell
60
62
jf npm install prettier
61
63
jf go get github.com/golang/example/hello
62
64
jf pip install requests
63
65
conda install numpy
66
+
mvn clean install
64
67
```
65
68
66
69
```shell
67
70
npm install prettier
68
71
go get github.com/golang/example/hello
69
72
pip install requests
70
73
conda install numpy
74
+
mvn clean install
71
75
```
72
76
73
77
### Configure code-server with JFrog extension
@@ -77,7 +81,7 @@ The [JFrog extension](https://open-vsx.org/extension/JFrog/jfrog-vscode-extensio
0 commit comments