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
| resolve | To define the Artifactory resolution repositories for your build, declare the repositories under the repositories section as described [here](https://docs.gradle.org/current/userguide/declaring\_repositories.html#declaring-repositories). |
Copy file name to clipboardExpand all lines: jfrog-applications/ci-and-sdks/ci-integrations/github-actions.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ This GitHub Action downloads, installs and configures JFrog CLI, so that it can
6
6
7
7
In addition, the Action includes the following features, when using JFrog CLI to work with JFrog Platform.
8
8
9
-
* The connection details of the JFrog platform used by JFrog CLI can be stored as secrets. Read more about it [here](broken-reference).
9
+
* The connection details of the JFrog platform used by JFrog CLI can be stored as secrets.
10
10
* There's no need to add the _build name_ and _build number_ options and arguments to commands which accept them. All build related operations will be automatically recorded with the _Workflow Name_ as build name and _Run Number_ as build number.
11
11
12
12
## Usage
@@ -52,7 +52,7 @@ You can use these environment variables in your workflow as follows:
52
52
```
53
53
54
54
| Important: If both Config Token(JF\_ENV\_\*) and separate environment variables(JF\_URL, ...) are provided, the default config will be the Config Token. To make the above separate environment variables as the default config use `jf c use setup-jfrog-cli-server` |
#### Storing the connection details using single Config Token
58
58
@@ -93,7 +93,7 @@ If you have multiple Config Tokens as secrets, you can use all of them in the wo
93
93
```
94
94
95
95
| Important: When exposing more than one JFrog configuration to the Action, you should always add the `jf c use` command to specify the server to use. |
| JF\_DOCKER\_REGISTRY | Docker registry in Artifactory. For more info, see [Getting Started with Artifactory as a Docker Registry](https://www.jfrog.com/confluence/display/JFROG/Getting+Started+with+Artifactory+as+a+Docker+Registry) |
94
94
| JFROG\_CLI\_BUILD\_PROJECT | JFrog project key to be used by commands which expect build name and build number. Determines the project of the published build. |
95
95
| JFROG\_CLI\_VERSION | Use a specific JFrog CLI version instead of the latest version. The minimal version allowed is: 2.17.0 |
Copy file name to clipboardExpand all lines: jfrog-applications/ci-and-sdks/ci-integrations/maven-artifactory-plugin.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ A typical build plugin configuration would be as follows:
50
50
</build>
51
51
```
52
52
53
-
The plugin's invocation phase is validate by default and we recommend you don't change it so the plugin is called as early as possible in the lifecycle of your Maven build.
53
+
The plugin's invocation phase is validate by default, and we recommend you don't change it so the plugin is called as early as possible in the lifecycle of your Maven build.
54
54
55
55
#### Full Configuration
56
56
@@ -114,13 +114,13 @@ However, the Maven Artifactory Plugin provides many other configurations:
|`<deployProperties>`| Specifies properties you can attach to published artifacts. For example: prop-value. |
120
-
|`<artifactory>`| Specifies whether environment variables are published as part of BuildInfo metadata and which include or exclude patterns are applied when variables are collected |
121
-
|`<publisher>`| Defines an Artifactory repository where build artifacts should be published using a combination of a `<contextUrl>` and `<repoKey>/<snapshotRepoKey>`. Build artifacts are deployed if the deploy goal is executed and only after all modules are built. |
122
-
|`<buildInfo>`| Updates BuildInfo metadata published together with build artifacts. You can configure whether or not BuildInfo metadata is published using the configuration. |
123
-
|`<proxy>`| Specifies HTTP/S proxy. |
120
+
|`<artifactory>`| Specifies whether environment variables are published as part of BuildInfo metadata and which include or exclude patterns are applied when variables are collected |
121
+
|`<publisher>`| Defines an Artifactory repository where build artifacts should be published using a combination of a `<contextUrl>` and `<repoKey>/<snapshotRepoKey>`. Build artifacts are deployed if the deploy goal is executed and only after all modules are built. |
122
+
|`<buildInfo>`| Updates BuildInfo metadata published together with build artifacts. You can configure whether or not BuildInfo metadata is published using the configuration. |
123
+
|`<proxy>`| Specifies HTTP/S proxy. |
124
124
125
125
#### Reading Environment Variables and System Properties
Copy file name to clipboardExpand all lines: jfrog-applications/jfrog-cli/cli-for-jfrog-artifactory/authentication.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -7,19 +7,19 @@ When used with Artifactory, JFrog CLI offers several means of authentication: JF
7
7
To authenticate yourself using your JFrog login credentials, either configure your credentials once using the **jf c add** command or provide the following option to each command.
| --url | JFrog Artifactory API endpoint URL. It usually ends with /artifactory |
12
12
| --user | JFrog username |
13
13
| --password | JFrog password or API key |
14
14
15
-
For enhanced security, when JFrog CLI is configured to use a username and password / API key, it automatically generates an access token to authenticate with Artifactory. The generated access token is valid for one hour only. JFrog CLI automatically refreshed the token before it expires. The **jfrog c add** command allows disabling this functionality. This feature is currently not supported by commands which use external tools or package managers or work with JFrog Distribution.
15
+
For enhanced security, when JFrog CLI is configured to use a username and password / API key, it automatically generates an access token to authenticate with Artifactory. The generated access token is valid for one hour only. JFrog CLI automatically refreshed the token before it expires. The **jf c add** command allows disabling this functionality. This feature is currently not supported by commands which use external tools or package managers or work with JFrog Distribution.
16
16
17
17
## Authenticating with an Access Token
18
18
19
19
To authenticate yourself using an Artifactory Access Token, either configure your Access Token once using the **jf c add** command or provide the following option to each command.
0 commit comments