Skip to content

Commit 0dd3168

Browse files
change publisher id and use production version of api (#10)
* change publisher id and use production version of api Signed-off-by: Kathryn Kodama <[email protected]>
1 parent dff035f commit 0dd3168

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# VS Code MicroProfile Starter Extension
22

3-
This is a VS Code extension for the MicroProfile Starter (https://start.microprofile.io/). This extension makes use of the API https://test-start.microprofile.io/api/2.
3+
The MicroProfile Starter extension provides support for generating a MicroProfile Maven project with examples based on the Eclipse MicroProfile Starter project (https://start.microprofile.io/) by the MicroProfile community. You will be able to generate a project by choosing a MicroProfile version, server and specifications, such as CDI, Config, Health Check, Metrics, and more. This extension is hosted under the MicroShed organization.
44

55
## Quick Start
66
* Install the extension

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "mp-starter-vscode-ext",
33
"displayName": "MicroProfile Starter",
44
"description": "VS Code extension starter for Eclipse MicroProfile",
5-
"version": "0.1.0",
6-
"publisher": "MicroShed",
5+
"version": "0.2.0",
6+
"publisher": "MicroProfile-Community",
77
"preview": true,
88
"license": "EPL-2.0",
99
"repository": {

src/util/starter.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export async function generateProject(): Promise<void> {
1717
var request = require('request');
1818

1919
var supportMatrixOptions = {
20-
url: 'https://test-start.microprofile.io/api/2/supportMatrix'
20+
url: 'https://start.microprofile.io/api/2/supportMatrix'
2121
};
2222

2323
async function getSupportMatrix(error: any, response: { statusCode: number; }, body: any) {
@@ -152,7 +152,7 @@ export async function generateProject(): Promise<void> {
152152
};
153153

154154
var options = {
155-
url: 'https://test-start.microprofile.io/api/1/project',
155+
url: 'https://start.microprofile.io/api/2/project',
156156
method: 'POST',
157157
headers: headers,
158158
body: dataString
@@ -186,6 +186,8 @@ export async function generateProject(): Promise<void> {
186186
}
187187

188188
await request(options, callback).pipe(fs.createWriteStream(targetDir + '/' + artifactId + '.zip'));
189+
} else {
190+
vscode.window.showErrorMessage(error);
189191
}
190192
}
191193
request(supportMatrixOptions, getSupportMatrix);

0 commit comments

Comments
 (0)