Skip to content

Commit bcf4769

Browse files
Signed-off-by: Matthew Wilson <[email protected]>
1 parent fed1656 commit bcf4769

File tree

8 files changed

+18
-17
lines changed

8 files changed

+18
-17
lines changed

Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def PRODUCT_NAME = "zowe-cli-cics-deploy-plugin"
8989
/**
9090
* This is where the Zowe project needs to be installed
9191
*/
92-
def ZOWE_CLI_INSTALL_DIR = "/.npm-global/lib/node_modules/@zowee/cli"
92+
def ZOWE_CLI_INSTALL_DIR = "/.npm-global/lib/node_modules/@brightside/core"
9393

9494
def ARTIFACTORY_CREDENTIALS_ID = "c8e3aa62-5eef-4e6b-8a3f-aa1006a7ef01"
9595

@@ -232,7 +232,7 @@ pipeline {
232232
echo "Install Zowe CLI globaly"
233233
sh "rm -f .npmrc"
234234
sh("npm set registry https://registry.npmjs.org")
235-
//sh("npm set @brightside:registry https://api.bintray.com/npm/ca/brightside/")
235+
sh("npm set @brightside:registry https://api.bintray.com/npm/ca/brightside/")
236236

237237
sh("npm install -g @brightside/core@lts-incremental")
238238
sh("zowe --version")
@@ -620,8 +620,8 @@ pipeline {
620620
sh "rm -f .npmrc"
621621
sh 'curl -u $USERNAME:$API_KEY https://eu.artifactory.swg-devops.com/artifactory/api/npm/auth/ >> .npmrc'
622622
sh "echo registry=$TEST_NPM_REGISTRY >> .npmrc"
623-
sh "echo @zowe:registry=https://registry.npmjs.org >> .npmrc"
624-
sh "echo @zowe:always-auth=false >> .npmrc"
623+
sh "echo @brightside:registry=https://api.bintray.com/npm/ca/brightside/ >> .npmrc"
624+
sh "echo @brightside:always-auth=false >> .npmrc"
625625

626626
script {
627627
if (BRANCH_NAME == MASTER_BRANCH) {

docs-internal/tutorials/Setup.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
Before you can develop for the cics-deploy plugin, follow these steps to set up your environment.
33

44
## Prequisites
5-
### Install Zowe CLI
6-
You'll need to install the @latest branch of Zowe CLI to develop for the cics-deploy plugin.
7-
5+
### Install Zowe CLI & CICS plugin
6+
You'll need to install the @lts-incremental branch of Zowe CLI to develop for the cics-deploy plugin.
7+
You'll also need the CICS plugin
88
```
9-
npm config set @zowe:registry https://api.bintray.com/npm/ca/brightside
10-
npm install -g @brightside/core@latest
9+
npm config set @brightside:registry https://api.bintray.com/npm/ca/brightside
10+
npm install -g @brightside/core@lts-incremental
11+
zowe plugins install @brightside/cics@lts-incremental
1112
```
1213

1314
## Initial setup

src/api/BundlePush/CmciConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
"use strict";
1313

14-
import { IHandlerParameters, IProfile } from "@zowe/imperative";
14+
import { IHandlerParameters, IProfile } from "@brightside/imperative";
1515

1616

1717
/**

src/api/BundlePush/SshConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
"use strict";
1313

14-
import { IHandlerParameters, IProfile } from "@zowe/imperative";
14+
import { IHandlerParameters, IProfile } from "@brightside/imperative";
1515

1616

1717
/**

src/api/BundlePush/ZosmfConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
"use strict";
1313

14-
import { IHandlerParameters, IProfile } from "@zowe/imperative";
14+
import { IHandlerParameters, IProfile } from "@brightside/imperative";
1515

1616

1717
/**

src/cli/push/bundle/options/CmciOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*/
1111

12-
import { ICommandOptionDefinition } from "@zowe/imperative";
12+
import { ICommandOptionDefinition } from "@brightside/imperative";
1313

1414
/**
1515
* scmci command line options, derived from zowe-cics equivalents

src/cli/push/bundle/options/SshOptions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
*
1010
*/
1111

12-
import { ICommandOptionDefinition } from "@zowe/imperative";
13-
import { SshSession } from "@zowe/cli";
12+
import { ICommandOptionDefinition } from "@brightside/imperative";
13+
import { SshSession } from "@brightside/core";
1414

1515
/**
1616
* ssh command line options, derived from zowe-cli equivalents

src/cli/shared/ZosmfOptions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
*
1010
*/
1111

12-
import { ICommandOptionDefinition } from "@zowe/imperative";
13-
import { ZosmfSession } from "@zowe/cli";
12+
import { ICommandOptionDefinition } from "@brightside/imperative";
13+
import { ZosmfSession } from "@brightside/core";
1414

1515
/**
1616
* zosMF command line options, derived from zowe-cli equivalents

0 commit comments

Comments
 (0)