Skip to content

Commit

Permalink
Zowe Suite v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zowe-robot authored Oct 1, 2024
2 parents 99d22a4 + 32becd5 commit 384ffa2
Show file tree
Hide file tree
Showing 13 changed files with 3,017 additions and 5,142 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build tn3270-ng2 workflow
on:
push:
branches:
- v2.x/staging
- v2.x/rc
- v2.x/master
- v3.x/staging
- v3.x/rc
- v3.x/master
pull_request:
types: [opened, reopened, synchronize]

Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
JF_ARTIFACTORY_1: ${{ secrets.JF_ARTIFACTORY_TOKEN }}

- name: '[Prep 5] prepare workflow'
uses: zowe-actions/zlux-builds/plugins/prepare-workflow@v2.x/main
uses: zowe-actions/zlux-builds/plugins/prepare-workflow@v3.x/main
with:
github-user: ${{ secrets.ZOWE_ROBOT_USER }}
github-password: ${{ secrets.ZOWE_ROBOT_TOKEN }}
Expand All @@ -157,22 +157,22 @@ jobs:
plugin-version: ${{ github.event.inputs.BUILD_VERSION }}

- name: '[Prep 6] build'
uses: zowe-actions/zlux-builds/plugins/zlux-plugins@v2.x/main
uses: zowe-actions/zlux-builds/plugins/zlux-plugins@v3.x/main
with:
build-zss: false

- name: '[Prep 7] packaging'
uses: zowe-actions/zlux-builds/plugins/make-pax@v2.x/main
uses: zowe-actions/zlux-builds/plugins/make-pax@v3.x/main
with:
pax-ssh-username: ${{ secrets.SSH_MARIST_USERNAME }}
pax-ssh-password: ${{ secrets.SSH_MARIST_RACF_PASSWORD }}
pax-name: tn3270-ng2

- name: '[Prep 8] deploy '
uses: zowe-actions/zlux-builds/plugins/deploy-pax@v2.x/main
uses: zowe-actions/zlux-builds/plugins/deploy-pax@v3.x/main

- name: '[Prep 9] Bump Staging Version '
if: ${{ github.event.inputs.PERFORM_RELEASE == 'true' && env.RELEASE == 'true' }}
uses: zowe-actions/zlux-builds/plugins/bump-version@v2.x/main
uses: zowe-actions/zlux-builds/plugins/bump-version@v3.x/main
env:
GITHUB_TOKEN: ${{ secrets.ZOWE_ROBOT_TOKEN }}
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: tn3270-ng2
id: org.zowe.terminal.tn3270
# Without the v
version: 2.13.0
version: 3.0.0
# Human readable component name
title: TN3270
# Human readable component description
Expand Down
18 changes: 6 additions & 12 deletions pluginDefinition.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"identifier": "org.zowe.terminal.tn3270",
"apiVersion": "2.0.0",
"pluginVersion": "2.13.0",
"pluginVersion": "3.0.0",
"pluginType": "application",
"license": "EPL-2.0",
"author": "Zowe",
Expand All @@ -11,7 +11,11 @@
"launchDefinition": {
"pluginShortNameKey": "TN3270",
"pluginShortNameDefault": "TN3270",
"imageSrc": "assets/icon.png"
"imageSrc": "v3/assets/icon.png"
},
"entryPoint": {
"2.0": "main.js",
"3.0": "v3/main.js"
},
"descriptionKey": "TN3270 Description",
"descriptionDefault": "Basic TN3270 Display Emulator",
Expand All @@ -35,16 +39,6 @@
"sourceName": "tn3270data",
"sourcePlugin": "org.zowe.terminal.proxy",
"versionRange": "^1.0.0"
},
{
"type": "service",
"name": "statediscovery",
"initializerLookupMethod": "internal",
"initializerName": "zosDiscoveryServiceInstaller",
"methods": [
"GET"
],
"version": "1.0.0"
}
]
}
39 changes: 0 additions & 39 deletions webClient/.angular-cli.json

This file was deleted.

99 changes: 99 additions & 0 deletions webClient/angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"org.zowe.terminal.vt": {
"projectType": "application",
"schematics": {},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": {
"base": "../web/v3",
"browser": ""
},
"index": "src/index.html",
"browser": "/src/plugin.ts",
"polyfills": [
"zone.js"
],
"baseHref": "./",
"tsConfig": "tsconfig.json",
"assets": [
{
"glob": "**/*",
"input": "src/assets",
"output": "assets"
}
],
"styles": [],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kB",
"maximumError": "5MB"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kB",
"maximumError": "500kB"
}
],
"outputHashing": "none"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "org.zowe.terminal.vt:build:production"
},
"development": {
"buildTarget": "org.zowe.terminal.vt:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json",
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"styles": [
"src/styles.css"
],
"scripts": []
}
}
}
}
}
}
Loading

0 comments on commit 384ffa2

Please sign in to comment.