Skip to content

Commit 27b136b

Browse files
author
andreik
committed
Changed JFrogDev project references to JFrog
1 parent 29c99fd commit 27b136b

File tree

27 files changed

+28
-28
lines changed

27 files changed

+28
-28
lines changed

artifactory-client-java-examples/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
The Artifactory Java Client provides a set of java APIs which you use to work with JFrog Artifactory from your java code.
44
It Allows managing Artifactory repositories, users, groups, permissions and system configuration. It also allows searches,
55
upload and download artifacts to or from Artifactory and a lot more.
6-
The client's documentation is available [here](https://github.com/JFrogDev/artifactory-client-java).<br />
6+
The client's documentation is available [here](https://github.com/JFrog/artifactory-client-java).<br />
77
We created a few project examples, to help you get started using the client.

build-info-java-example/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build-info-java-example
2-
This project is an example that demonstrates the ability to create an Artifactory build-info object, deploy it to Artifactory and deploy the build artifact from a filesystem directory to Artifactory by using the [build-info OSS project](https://github.com/JFrogDev/build-info), similar to what the CI/build tools Artifactory plugins do.
2+
This project is an example that demonstrates the ability to create an Artifactory build-info object, deploy it to Artifactory and deploy the build artifact from a filesystem directory to Artifactory by using the [build-info OSS project](https://github.com/JFrog/build-info), similar to what the CI/build tools Artifactory plugins do.
33

44

55
### Motivation
@@ -14,7 +14,7 @@ You can either run this from your IDE, or on a command line. To run it from your
1414
In order to run it from the command line, please follow the below instructions:
1515
First, clone the code:
1616
```
17-
git clone [email protected]:JFrogDev/project-examples.git
17+
git clone [email protected]:JFrog/project-examples.git
1818
```
1919
Once you have the code on your machine, run:
2020
```mvn install```

jenkins-examples/job-dsl-examples/freestyle-generic-example/JobDSL.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def upSpec = """{
99

1010
job("job-dsl-artifactory-freestyle-generic-example") {
1111
scm {
12-
git("https://github.com/JFrogDev/project-examples.git", "master")
12+
git("https://github.com/JFrog/project-examples.git", "master")
1313
}
1414

1515
configure { node ->

jenkins-examples/job-dsl-examples/freestyle-gradle-example/JobDSL.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
job("job-dsl-artifactory-freestyle-gradle-example") {
22
scm {
3-
git("https://github.com/JFrogDev/project-examples.git", "master")
3+
git("https://github.com/JFrog/project-examples.git", "master")
44
}
55

66
configure { node ->

jenkins-examples/job-dsl-examples/freestyle-ivy-example/JobDSL.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
job("job-dsl-artifactory-freestyle-ivy-example") {
22
scm {
3-
git("https://github.com/JFrogDev/project-examples.git", "master")
3+
git("https://github.com/JFrog/project-examples.git", "master")
44
}
55

66
configure { node ->

jenkins-examples/job-dsl-examples/freestyle-maven-example/JobDSL.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
job("job-dsl-artifactory-freestyle-maven-example") {
22
scm {
3-
git("https://github.com/JFrogDev/project-examples.git", "master")
3+
git("https://github.com/JFrog/project-examples.git", "master")
44
}
55

66
configure { node ->

jenkins-examples/job-dsl-examples/ivy-example/JobDSL.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ivyJob('job-dsl-artifactory-ivy-example') {
22
scm {
3-
git("https://github.com/JFrogDev/project-examples.git", "master")
3+
git("https://github.com/JFrog/project-examples.git", "master")
44
}
55

66
// === Configure the Ivy builder ===

jenkins-examples/job-dsl-examples/maven-example/JobDSL.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
mavenJob('job-dsl-artifactory-maven-example') {
22
scm {
3-
git("https://github.com/JFrogDev/project-examples.git", "master")
3+
git("https://github.com/JFrog/project-examples.git", "master")
44
}
55

66
configure { node ->

jenkins-examples/job-dsl-examples/pipeline-example/JobDSL.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Mandatory - Set the following Git repository in the Source control management section:
2-
// https://github.com/JFrogDev/project-examples.git
2+
// https://github.com/JFrog/project-examples.git
33
pipelineJob('job-dsl-artifactory-pipeline-example') {
44
parameters {
55
stringParam('SERVER_ID', SERVER_ID, 'Enter Artifactory server ID')

jenkins-examples/pipeline-examples/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ and then copy the content of the example's Jenkinsfile into the *Script* text-ar
3232
In your Jenkins job configuration, set the following:
3333
* Set *Definition* to "Pipeline script from SCM".
3434
* Set *SCM* to *Git*.
35-
* Set *Repository URL* to *https://github.com/JFrogDev/project-examples.git*
35+
* Set *Repository URL* to *https://github.com/JFrog/project-examples.git*
3636
* Set *Script Path* to the relative path to the example's Jenkinsfile. For example, for the below *props-example*, set *Script Path* to *jenkins-examples/pipeline-examples/props-example/Jenkinsfile*
3737

3838
### Available Examples

jenkins-examples/pipeline-examples/aql-example/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
node {
2-
git url: 'https://github.com/jfrogdev/project-examples.git'
2+
git url: 'https://github.com/JFrog/project-examples.git'
33

44
// Get Artifactory server instance, defined in the Artifactory Plugin administration page.
55
def server = Artifactory.server SERVER_ID

jenkins-examples/pipeline-examples/declarative-example/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pipeline {
33
stages {
44
stage('Clone'){
55
steps {
6-
git url: 'https://github.com/jfrogdev/project-examples.git'
6+
git url: 'https://github.com/JFrog/project-examples.git'
77
}
88
}
99

jenkins-examples/pipeline-examples/exclude-patterns-download-example/JenkinsFile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
node {
2-
git url: 'https://github.com/jfrogdev/project-examples.git'
2+
git url: 'https://github.com/JFrog/project-examples.git'
33

44
// Obtain an Artifactory server instance, defined in Jenkins --> Manage:
55
def server = Artifactory.server SERVER_ID

jenkins-examples/pipeline-examples/exclude-patterns-upload-example/JenkinsFile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
node {
2-
git url: 'https://github.com/jfrogdev/project-examples.git'
2+
git url: 'https://github.com/JFrog/project-examples.git'
33

44
// Obtain an Artifactory server instance, defined in Jenkins --> Manage:
55
def server = Artifactory.server SERVER_ID

jenkins-examples/pipeline-examples/gradle-container-example/JenkinsFile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ node {
44
def buildInfo = Artifactory.newBuildInfo()
55

66
stage ('Clone') {
7-
git url: 'https://github.com/jfrogdev/project-examples.git'
7+
git url: 'https://github.com/JFrog/project-examples.git'
88
}
99

1010
stage ('Artifactory configuration') {

jenkins-examples/pipeline-examples/gradle-deploy-example/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ node {
44
def rtGradle
55

66
stage ('Clone') {
7-
git url: 'https://github.com/jfrogdev/project-examples.git'
7+
git url: 'https://github.com/JFrog/project-examples.git'
88
}
99

1010
stage ('Artifactory configuration') {

jenkins-examples/pipeline-examples/gradle-example-ci-server/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ node {
44
def buildInfo
55

66
stage ('Clone') {
7-
git url: 'https://github.com/jfrogdev/project-examples.git'
7+
git url: 'https://github.com/JFrog/project-examples.git'
88
}
99

1010
stage ('Artifactory configuration') {

jenkins-examples/pipeline-examples/gradle-example/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ node {
44
def buildInfo = Artifactory.newBuildInfo()
55

66
stage ('Clone') {
7-
git url: 'https://github.com/jfrogdev/project-examples.git'
7+
git url: 'https://github.com/JFrog/project-examples.git'
88
}
99

1010
stage ('Artifactory configuration') {

jenkins-examples/pipeline-examples/maven-container-example/JenkinsFile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ node {
44
def buildInfo
55

66
stage ('Clone') {
7-
git url: 'https://github.com/jfrogdev/project-examples.git'
7+
git url: 'https://github.com/JFrog/project-examples.git'
88
}
99

1010
stage ('Artifactory configuration') {

jenkins-examples/pipeline-examples/maven-deploy-example/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ node {
44
def rtMaven
55

66
stage ('Clone') {
7-
git url: 'https://github.com/jfrogdev/project-examples.git'
7+
git url: 'https://github.com/JFrog/project-examples.git'
88
}
99

1010
stage ('Artifactory configuration') {

jenkins-examples/pipeline-examples/maven-example/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ node {
44
def buildInfo
55

66
stage ('Clone') {
7-
git url: 'https://github.com/jfrogdev/project-examples.git'
7+
git url: 'https://github.com/JFrog/project-examples.git'
88
}
99

1010
stage ('Artifactory configuration') {

jenkins-examples/pipeline-examples/promotion-example/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
node {
22
stage 'Build'
3-
git url: 'https://github.com/jfrogdev/project-examples.git'
3+
git url: 'https://github.com/JFrog/project-examples.git'
44

55
// Obtain an Artifactory server instance, defined in Jenkins --> Manage:
66
def server = Artifactory.server SERVER_ID

jenkins-examples/pipeline-examples/props-example/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
node {
2-
git url: 'https://github.com/jfrogdev/project-examples.git'
2+
git url: 'https://github.com/JFrog/project-examples.git'
33

44
// Obtain an Artifactory server instance, defined in Jenkins --> Manage:
55
def server = Artifactory.server SERVER_ID

jenkins-examples/pipeline-examples/props-single-file-example/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
node {
2-
git url: 'https://github.com/jfrogdev/project-examples.git'
2+
git url: 'https://github.com/JFrog/project-examples.git'
33

44
// Obtain an Artifactory server instance, defined in Jenkins --> Manage:
55
def server = Artifactory.server SERVER_ID

kubernetes-example/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Follow this to setup kubernetes cluster on GKE. [https://cloud.google.com/contai
1818
Follow this to setup kubernetes cluster on AKS. [https://docs.microsoft.com/en-us/azure/aks/tutorial-kubernetes-deploy-cluster](https://docs.microsoft.com/en-us/azure/aks/tutorial-kubernetes-deploy-cluster)
1919

2020
### Install Artifactory on kubernetes
21-
Here is documentation to install JFrog Artifactory on kubernetes [artifactory-docker-examples](https://github.com/JFrogDev/artifactory-docker-examples/tree/master/kubernetes)<br>
21+
Here is documentation to install JFrog Artifactory on kubernetes [artifactory-docker-examples](https://github.com/JFrog/artifactory-docker-examples/tree/master/kubernetes)<br>
2222
Here is link to official helm chart for Artifactory [https://github.com/kubernetes/charts/tree/master/stable/artifactory](https://github.com/kubernetes/charts/tree/master/stable/artifactory)
2323

2424
<b>Note</b> If you are using [Artifactory SaaS](https://www.jfrog.com/artifactory/free-trial/#Cloud) you can skip this step.

kubernetes-example/docker-app-chart/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ sources:
1313
maintainers:
1414
- name: jainishshah17
1515
16-
icon: https://raw.githubusercontent.com/JFrogDev/artifactory-dcos/master/images/jfrog_med.png
16+
icon: https://raw.githubusercontent.com/JFrog/artifactory-dcos/master/images/jfrog_med.png

openshift-s2i-examples/cpp-conan/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# How to containerize C++ applications using Conan and OpenShift S2I #
22

33
## Clone project ##
4-
``` git clone https://github.com/JFrogDev/project-examples.git && cd project-examples/openshift-s2i-examples/cpp-conan ```
4+
``` git clone https://github.com/JFrog/project-examples.git && cd project-examples/openshift-s2i-examples/cpp-conan ```
55

66
## Install source-to-image / s2i / sti ##
77
Follow the [instructions](https://github.com/openshift/source-to-image#installation) to install s2i

0 commit comments

Comments
 (0)