File tree Expand file tree Collapse file tree 8 files changed +18
-17
lines changed Expand file tree Collapse file tree 8 files changed +18
-17
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ def PRODUCT_NAME = "zowe-cli-cics-deploy-plugin"
89
89
/**
90
90
* This is where the Zowe project needs to be installed
91
91
*/
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 "
93
93
94
94
def ARTIFACTORY_CREDENTIALS_ID = " c8e3aa62-5eef-4e6b-8a3f-aa1006a7ef01"
95
95
@@ -232,7 +232,7 @@ pipeline {
232
232
echo " Install Zowe CLI globaly"
233
233
sh " rm -f .npmrc"
234
234
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/" )
236
236
237
237
sh(" npm install -g @brightside/core@lts-incremental" )
238
238
sh(" zowe --version" )
@@ -620,8 +620,8 @@ pipeline {
620
620
sh " rm -f .npmrc"
621
621
sh ' curl -u $USERNAME:$API_KEY https://eu.artifactory.swg-devops.com/artifactory/api/npm/auth/ >> .npmrc'
622
622
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"
625
625
626
626
script {
627
627
if (BRANCH_NAME == MASTER_BRANCH ) {
Original file line number Diff line number Diff line change 2
2
Before you can develop for the cics-deploy plugin, follow these steps to set up your environment.
3
3
4
4
## 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
8
8
```
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
11
12
```
12
13
13
14
## Initial setup
Original file line number Diff line number Diff line change 11
11
12
12
"use strict" ;
13
13
14
- import { IHandlerParameters , IProfile } from "@zowe /imperative" ;
14
+ import { IHandlerParameters , IProfile } from "@brightside /imperative" ;
15
15
16
16
17
17
/**
Original file line number Diff line number Diff line change 11
11
12
12
"use strict" ;
13
13
14
- import { IHandlerParameters , IProfile } from "@zowe /imperative" ;
14
+ import { IHandlerParameters , IProfile } from "@brightside /imperative" ;
15
15
16
16
17
17
/**
Original file line number Diff line number Diff line change 11
11
12
12
"use strict" ;
13
13
14
- import { IHandlerParameters , IProfile } from "@zowe /imperative" ;
14
+ import { IHandlerParameters , IProfile } from "@brightside /imperative" ;
15
15
16
16
17
17
/**
Original file line number Diff line number Diff line change 9
9
*
10
10
*/
11
11
12
- import { ICommandOptionDefinition } from "@zowe /imperative" ;
12
+ import { ICommandOptionDefinition } from "@brightside /imperative" ;
13
13
14
14
/**
15
15
* scmci command line options, derived from zowe-cics equivalents
Original file line number Diff line number Diff line change 9
9
*
10
10
*/
11
11
12
- import { ICommandOptionDefinition } from "@zowe /imperative" ;
13
- import { SshSession } from "@zowe/cli " ;
12
+ import { ICommandOptionDefinition } from "@brightside /imperative" ;
13
+ import { SshSession } from "@brightside/core " ;
14
14
15
15
/**
16
16
* ssh command line options, derived from zowe-cli equivalents
Original file line number Diff line number Diff line change 9
9
*
10
10
*/
11
11
12
- import { ICommandOptionDefinition } from "@zowe /imperative" ;
13
- import { ZosmfSession } from "@zowe/cli " ;
12
+ import { ICommandOptionDefinition } from "@brightside /imperative" ;
13
+ import { ZosmfSession } from "@brightside/core " ;
14
14
15
15
/**
16
16
* zosMF command line options, derived from zowe-cli equivalents
You can’t perform that action at this time.
0 commit comments