2017-11-10 08:30:04 +03:00
|
|
|
{
|
2017-11-10 12:25:04 +03:00
|
|
|
"name": "vscode-maven",
|
2018-02-26 09:40:25 +03:00
|
|
|
"displayName": "Maven for Java",
|
2018-11-21 08:17:02 +03:00
|
|
|
"description": "%description%",
|
2020-03-20 12:29:17 +03:00
|
|
|
"version": "0.21.2",
|
2017-11-14 05:25:26 +03:00
|
|
|
"icon": "resources/logo.png",
|
2018-01-15 11:07:33 +03:00
|
|
|
"publisher": "vscjava",
|
2018-07-19 10:33:25 +03:00
|
|
|
"preview": true,
|
2018-01-08 09:58:28 +03:00
|
|
|
"aiKey": "7c4292ac-8ca8-4e02-9f1c-0b73e1eeeca4",
|
2017-11-10 12:25:04 +03:00
|
|
|
"engines": {
|
2020-03-12 06:19:27 +03:00
|
|
|
"vscode": "^1.43.0"
|
2017-11-10 12:25:04 +03:00
|
|
|
},
|
|
|
|
"categories": [
|
2018-05-14 04:48:26 +03:00
|
|
|
"Programming Languages",
|
2017-11-10 12:25:04 +03:00
|
|
|
"Other"
|
|
|
|
],
|
2017-12-04 06:40:32 +03:00
|
|
|
"keywords": [
|
|
|
|
"Maven",
|
|
|
|
"Java"
|
|
|
|
],
|
2019-12-17 13:31:49 +03:00
|
|
|
"license": "MIT",
|
2020-01-10 11:21:42 +03:00
|
|
|
"homepage": "https://github.com/Microsoft/vscode-maven/",
|
2017-11-13 14:07:14 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-01-15 11:07:33 +03:00
|
|
|
"url": "https://github.com/Microsoft/vscode-maven.git"
|
2017-11-13 14:07:14 +03:00
|
|
|
},
|
2017-11-10 12:25:04 +03:00
|
|
|
"activationEvents": [
|
2018-07-15 09:55:10 +03:00
|
|
|
"workspaceContains:**/pom.xml",
|
2018-12-05 10:57:18 +03:00
|
|
|
"onCommand:maven.explorer.refresh",
|
2017-12-04 10:35:41 +03:00
|
|
|
"onCommand:maven.goal.clean",
|
|
|
|
"onCommand:maven.goal.validate",
|
|
|
|
"onCommand:maven.goal.compile",
|
|
|
|
"onCommand:maven.goal.test",
|
|
|
|
"onCommand:maven.goal.package",
|
|
|
|
"onCommand:maven.goal.verify",
|
|
|
|
"onCommand:maven.goal.install",
|
|
|
|
"onCommand:maven.goal.site",
|
|
|
|
"onCommand:maven.goal.deploy",
|
|
|
|
"onCommand:maven.goal.custom",
|
2018-09-07 09:22:30 +03:00
|
|
|
"onCommand:maven.goal.execute",
|
2017-12-04 10:35:41 +03:00
|
|
|
"onCommand:maven.project.effectivePom",
|
|
|
|
"onCommand:maven.project.openPom",
|
2017-12-05 05:31:55 +03:00
|
|
|
"onCommand:maven.archetype.generate",
|
2017-12-14 11:59:10 +03:00
|
|
|
"onCommand:maven.archetype.update",
|
2018-12-04 13:24:30 +03:00
|
|
|
"onCommand:maven.history",
|
2018-12-17 10:02:26 +03:00
|
|
|
"onCommand:maven.plugin.execute",
|
2019-02-25 09:22:03 +03:00
|
|
|
"onCommand:maven.project.addDependency",
|
2019-01-28 09:52:01 +03:00
|
|
|
"onView:mavenProjects",
|
|
|
|
"onLanguage:xml"
|
2017-11-10 12:25:04 +03:00
|
|
|
],
|
2018-12-10 05:46:07 +03:00
|
|
|
"main": "./dist/extension",
|
2017-11-10 12:25:04 +03:00
|
|
|
"contributes": {
|
2019-08-30 09:22:33 +03:00
|
|
|
"javaExtensions": [
|
2020-03-20 12:29:17 +03:00
|
|
|
"./jdtls.ext/com.microsoft.java.maven.plugin/target/com.microsoft.java.maven.plugin-0.21.2.jar"
|
2019-08-30 09:22:33 +03:00
|
|
|
],
|
2017-11-10 12:25:04 +03:00
|
|
|
"commands": [
|
|
|
|
{
|
2018-12-05 10:57:18 +03:00
|
|
|
"command": "maven.explorer.refresh",
|
|
|
|
"title": "%contributes.commands.maven.explorer.refresh%",
|
2017-11-22 08:54:42 +03:00
|
|
|
"category": "Maven",
|
2020-02-12 12:13:41 +03:00
|
|
|
"icon": "$(refresh)"
|
2017-11-13 12:34:15 +03:00
|
|
|
},
|
2017-11-15 09:59:07 +03:00
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.goal.clean",
|
2017-11-22 08:54:42 +03:00
|
|
|
"title": "clean",
|
|
|
|
"category": "Maven"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.goal.validate",
|
2017-11-22 08:54:42 +03:00
|
|
|
"title": "validate",
|
|
|
|
"category": "Maven"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.goal.compile",
|
2017-11-22 08:54:42 +03:00
|
|
|
"title": "compile",
|
|
|
|
"category": "Maven"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.goal.test",
|
2017-11-22 08:54:42 +03:00
|
|
|
"title": "test",
|
|
|
|
"category": "Maven"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.goal.package",
|
2017-11-22 08:54:42 +03:00
|
|
|
"title": "package",
|
|
|
|
"category": "Maven"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.goal.verify",
|
2017-11-22 08:54:42 +03:00
|
|
|
"title": "verify",
|
|
|
|
"category": "Maven"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.goal.install",
|
2017-11-22 08:54:42 +03:00
|
|
|
"title": "install",
|
|
|
|
"category": "Maven"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.goal.site",
|
2017-11-22 08:54:42 +03:00
|
|
|
"title": "site",
|
|
|
|
"category": "Maven"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.goal.deploy",
|
2017-11-22 08:54:42 +03:00
|
|
|
"title": "deploy",
|
|
|
|
"category": "Maven"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
2017-11-20 11:52:45 +03:00
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.goal.custom",
|
2018-11-21 08:17:02 +03:00
|
|
|
"title": "%contributes.commands.maven.goal.custom%",
|
2017-11-22 08:54:42 +03:00
|
|
|
"category": "Maven"
|
2017-11-20 11:52:45 +03:00
|
|
|
},
|
2017-11-15 09:59:07 +03:00
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.project.effectivePom",
|
2018-11-21 08:17:02 +03:00
|
|
|
"title": "%contributes.commands.maven.project.effectivePom%",
|
2017-11-22 08:54:42 +03:00
|
|
|
"category": "Maven"
|
2017-11-20 09:44:27 +03:00
|
|
|
},
|
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.project.openPom",
|
2018-11-21 08:17:02 +03:00
|
|
|
"title": "%contributes.commands.maven.project.openPom%",
|
2019-09-17 11:42:36 +03:00
|
|
|
"category": "Maven",
|
2020-02-12 12:13:41 +03:00
|
|
|
"icon": "$(go-to-file)"
|
2017-11-22 11:55:43 +03:00
|
|
|
},
|
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.archetype.generate",
|
2018-11-21 08:17:02 +03:00
|
|
|
"title": "%contributes.commands.maven.archetype.generate%",
|
2018-12-17 10:38:20 +03:00
|
|
|
"category": "Maven",
|
2020-02-12 12:13:41 +03:00
|
|
|
"icon": "$(add)"
|
2017-12-14 11:59:10 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.archetype.update",
|
2018-11-21 08:17:02 +03:00
|
|
|
"title": "%contributes.commands.maven.archetype.update%",
|
2017-12-14 11:59:10 +03:00
|
|
|
"category": "Maven"
|
2018-05-14 04:48:26 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.history",
|
2018-11-21 08:17:02 +03:00
|
|
|
"title": "%contributes.commands.maven.history%",
|
2018-05-15 10:31:28 +03:00
|
|
|
"category": "Maven"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.goal.execute",
|
2018-11-21 08:17:02 +03:00
|
|
|
"title": "%contributes.commands.maven.goal.execute%",
|
2018-05-14 04:48:26 +03:00
|
|
|
"category": "Maven"
|
2018-12-04 13:24:30 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.plugin.execute",
|
|
|
|
"title": "%contributes.commands.maven.plugin.execute%",
|
2019-09-17 10:28:20 +03:00
|
|
|
"category": "Maven",
|
2020-02-12 12:13:41 +03:00
|
|
|
"icon": "$(play)"
|
2018-12-28 11:20:26 +03:00
|
|
|
},
|
2019-03-12 10:02:41 +03:00
|
|
|
{
|
|
|
|
"command": "maven.plugin.debug",
|
|
|
|
"title": "%contributes.commands.maven.plugin.debug%",
|
|
|
|
"category": "Maven"
|
|
|
|
},
|
2018-12-28 11:20:26 +03:00
|
|
|
{
|
|
|
|
"command": "maven.view.flat",
|
|
|
|
"title": "%contributes.commands.maven.view.flat%",
|
|
|
|
"category": "Maven",
|
2020-02-12 12:13:41 +03:00
|
|
|
"icon": "$(list-tree)"
|
2018-12-28 11:20:26 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.view.hierarchical",
|
|
|
|
"title": "%contributes.commands.maven.view.hierarchical%",
|
|
|
|
"category": "Maven",
|
2020-02-12 12:13:41 +03:00
|
|
|
"icon": "$(list-flat)"
|
2019-02-25 09:22:03 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.project.addDependency",
|
|
|
|
"title": "%contributes.commands.maven.project.addDependency%",
|
|
|
|
"category": "Maven"
|
2019-03-04 08:58:45 +03:00
|
|
|
},
|
2019-03-28 04:26:19 +03:00
|
|
|
{
|
|
|
|
"command": "maven.project.showDependencies",
|
|
|
|
"title": "%contributes.commands.maven.project.showDependencies%",
|
|
|
|
"category": "Maven"
|
|
|
|
},
|
2019-03-04 08:58:45 +03:00
|
|
|
{
|
|
|
|
"command": "maven.favorites",
|
2020-02-12 15:29:16 +03:00
|
|
|
"title": "%contributes.commands.maven.favorites%",
|
2019-03-04 08:58:45 +03:00
|
|
|
"category": "Maven"
|
2017-11-10 12:25:04 +03:00
|
|
|
}
|
2017-11-10 08:30:04 +03:00
|
|
|
],
|
2017-11-10 12:25:04 +03:00
|
|
|
"views": {
|
|
|
|
"explorer": [
|
|
|
|
{
|
|
|
|
"id": "mavenProjects",
|
2018-12-17 10:02:26 +03:00
|
|
|
"name": "%contributes.views.explorer.mavenProjects%"
|
2017-11-10 12:25:04 +03:00
|
|
|
}
|
|
|
|
]
|
2017-11-10 08:30:04 +03:00
|
|
|
},
|
2017-11-10 12:25:04 +03:00
|
|
|
"menus": {
|
2017-12-15 04:52:36 +03:00
|
|
|
"commandPalette": [
|
|
|
|
{
|
|
|
|
"command": "maven.goal.clean",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.goal.validate",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.goal.compile",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.goal.test",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.goal.package",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.goal.verify",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.goal.install",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.goal.site",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.goal.deploy",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.goal.custom",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.project.effectivePom",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
2018-12-05 10:57:18 +03:00
|
|
|
"command": "maven.explorer.refresh",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.project.openPom",
|
2018-02-13 07:06:51 +03:00
|
|
|
"when": "never"
|
2019-02-28 10:19:49 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.plugin.execute",
|
|
|
|
"when": "never"
|
2019-03-12 10:02:41 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.plugin.debug",
|
|
|
|
"when": "never"
|
2019-04-01 05:00:13 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.project.showDependencies",
|
|
|
|
"when": "never"
|
2017-12-15 04:52:36 +03:00
|
|
|
}
|
|
|
|
],
|
2017-11-22 08:54:42 +03:00
|
|
|
"explorer/context": [
|
|
|
|
{
|
2017-11-29 06:18:36 +03:00
|
|
|
"command": "maven.archetype.generate",
|
|
|
|
"group": "maven@3"
|
2017-11-22 11:55:43 +03:00
|
|
|
},
|
2017-11-22 08:54:42 +03:00
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.project.effectivePom",
|
2017-11-29 06:18:36 +03:00
|
|
|
"when": "resourceFilename == pom.xml",
|
|
|
|
"group": "maven@1"
|
2017-11-22 08:54:42 +03:00
|
|
|
}
|
|
|
|
],
|
2017-11-10 12:25:04 +03:00
|
|
|
"view/title": [
|
2018-12-28 11:20:26 +03:00
|
|
|
{
|
|
|
|
"command": "maven.view.flat",
|
|
|
|
"when": "view == mavenProjects && config.maven.view != flat",
|
|
|
|
"group": "navigation@0a"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.view.hierarchical",
|
|
|
|
"when": "view == mavenProjects && config.maven.view != hierarchical",
|
|
|
|
"group": "navigation@0b"
|
|
|
|
},
|
2018-12-17 10:38:20 +03:00
|
|
|
{
|
|
|
|
"command": "maven.archetype.generate",
|
|
|
|
"when": "view == mavenProjects",
|
|
|
|
"group": "navigation@1"
|
|
|
|
},
|
2017-11-10 12:25:04 +03:00
|
|
|
{
|
2018-12-05 10:57:18 +03:00
|
|
|
"command": "maven.explorer.refresh",
|
2017-12-04 12:10:41 +03:00
|
|
|
"when": "view == mavenProjects",
|
|
|
|
"group": "navigation@2"
|
2017-11-10 12:25:04 +03:00
|
|
|
}
|
2017-11-13 12:34:15 +03:00
|
|
|
],
|
|
|
|
"view/item/context": [
|
2017-11-15 09:59:07 +03:00
|
|
|
{
|
2017-12-15 04:52:36 +03:00
|
|
|
"command": "maven.goal.custom",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2018-06-05 07:50:13 +03:00
|
|
|
"group": "1-lifecycle@5"
|
|
|
|
},
|
2019-03-04 08:58:45 +03:00
|
|
|
{
|
|
|
|
"command": "maven.favorites",
|
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
|
|
|
"group": "1-lifecycle@3"
|
|
|
|
},
|
2018-06-05 07:50:13 +03:00
|
|
|
{
|
|
|
|
"command": "maven.history",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2017-11-20 09:44:27 +03:00
|
|
|
"group": "1-lifecycle@0"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-12-15 04:52:36 +03:00
|
|
|
"command": "maven.goal.clean",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2018-06-05 07:50:13 +03:00
|
|
|
"group": "1-lifecycle@10"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-12-15 04:52:36 +03:00
|
|
|
"command": "maven.goal.package",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2018-06-05 07:50:13 +03:00
|
|
|
"group": "1-lifecycle@20"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-12-15 04:52:36 +03:00
|
|
|
"command": "maven.goal.install",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2018-06-05 07:50:13 +03:00
|
|
|
"group": "1-lifecycle@30"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-12-15 04:52:36 +03:00
|
|
|
"command": "maven.goal.compile",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2018-06-05 07:50:13 +03:00
|
|
|
"group": "1-lifecycle@40"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-12-15 04:52:36 +03:00
|
|
|
"command": "maven.goal.validate",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2018-06-05 07:50:13 +03:00
|
|
|
"group": "1-lifecycle@50"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-12-15 04:52:36 +03:00
|
|
|
"command": "maven.goal.verify",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2018-06-05 07:50:13 +03:00
|
|
|
"group": "1-lifecycle@60"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-12-15 04:52:36 +03:00
|
|
|
"command": "maven.goal.test",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2018-06-05 07:50:13 +03:00
|
|
|
"group": "1-lifecycle@70"
|
2017-11-15 09:59:07 +03:00
|
|
|
},
|
|
|
|
{
|
2017-12-15 04:52:36 +03:00
|
|
|
"command": "maven.goal.site",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2018-06-05 07:50:13 +03:00
|
|
|
"group": "1-lifecycle@80"
|
2017-11-20 09:44:27 +03:00
|
|
|
},
|
2017-11-20 11:52:45 +03:00
|
|
|
{
|
2017-12-15 04:52:36 +03:00
|
|
|
"command": "maven.goal.deploy",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2018-06-05 07:50:13 +03:00
|
|
|
"group": "1-lifecycle@90"
|
2017-11-20 11:52:45 +03:00
|
|
|
},
|
2017-11-15 09:59:07 +03:00
|
|
|
{
|
2017-11-29 06:14:27 +03:00
|
|
|
"command": "maven.project.effectivePom",
|
2018-12-04 13:24:30 +03:00
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
2017-11-20 09:44:27 +03:00
|
|
|
"group": "0-pom@1"
|
2018-12-04 13:24:30 +03:00
|
|
|
},
|
|
|
|
{
|
2019-03-28 04:26:19 +03:00
|
|
|
"command": "maven.project.showDependencies",
|
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
|
|
|
"group": "0-pom@0"
|
|
|
|
},
|
2019-09-17 11:42:36 +03:00
|
|
|
{
|
|
|
|
"command": "maven.project.openPom",
|
|
|
|
"when": "view == mavenProjects && viewItem == MavenProject",
|
|
|
|
"group": "inline"
|
|
|
|
},
|
2019-09-17 10:28:20 +03:00
|
|
|
{
|
|
|
|
"command": "maven.plugin.execute",
|
|
|
|
"when": "view == mavenProjects && viewItem == PluginGoal",
|
|
|
|
"group": "inline"
|
|
|
|
},
|
2019-03-28 04:26:19 +03:00
|
|
|
{
|
2018-12-04 13:24:30 +03:00
|
|
|
"command": "maven.plugin.execute",
|
|
|
|
"when": "view == mavenProjects && viewItem == PluginGoal",
|
|
|
|
"group": "1@1"
|
2018-12-05 10:57:18 +03:00
|
|
|
},
|
2019-03-12 10:02:41 +03:00
|
|
|
{
|
|
|
|
"command": "maven.plugin.debug",
|
|
|
|
"when": "view == mavenProjects && viewItem == PluginGoal",
|
|
|
|
"group": "1@2"
|
|
|
|
},
|
2018-12-05 10:57:18 +03:00
|
|
|
{
|
|
|
|
"command": "maven.explorer.refresh",
|
|
|
|
"when": "view == mavenProjects && viewItem == MavenPlugin",
|
|
|
|
"group": "1@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "maven.explorer.refresh",
|
|
|
|
"when": "view == mavenProjects && viewItem == Menu",
|
2019-09-17 11:42:36 +03:00
|
|
|
"group": "inline"
|
2017-11-13 12:34:15 +03:00
|
|
|
}
|
2017-11-10 12:25:04 +03:00
|
|
|
]
|
2017-11-10 08:30:04 +03:00
|
|
|
},
|
2017-11-10 12:25:04 +03:00
|
|
|
"configuration": [
|
|
|
|
{
|
2018-02-26 09:40:25 +03:00
|
|
|
"title": "Maven for Java",
|
2017-11-10 12:25:04 +03:00
|
|
|
"properties": {
|
2018-07-20 04:46:33 +03:00
|
|
|
"maven.excludedFolders": {
|
2017-12-11 10:12:37 +03:00
|
|
|
"type": "array",
|
2017-12-14 11:59:10 +03:00
|
|
|
"default": [
|
|
|
|
"**/.*",
|
2018-01-24 08:10:12 +03:00
|
|
|
"**/node_modules",
|
2018-07-10 07:45:42 +03:00
|
|
|
"**/target",
|
|
|
|
"**/bin"
|
2017-12-14 11:59:10 +03:00
|
|
|
],
|
2018-11-21 08:17:02 +03:00
|
|
|
"description": "%configuration.maven.excludedFolders%",
|
2017-12-12 05:51:50 +03:00
|
|
|
"scope": "resource"
|
2017-12-11 12:12:57 +03:00
|
|
|
},
|
2018-07-23 07:19:41 +03:00
|
|
|
"maven.executable.preferMavenWrapper": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": "true",
|
2018-11-21 08:17:02 +03:00
|
|
|
"description": "%configuration.maven.executable.preferMavenWrapper%",
|
2018-07-23 07:19:41 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
2017-12-11 12:12:57 +03:00
|
|
|
"maven.executable.path": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
2018-11-21 08:17:02 +03:00
|
|
|
"description": "%configuration.maven.executable.path%",
|
2018-07-18 12:29:50 +03:00
|
|
|
"scope": "resource"
|
2018-03-18 18:20:03 +03:00
|
|
|
},
|
2018-04-12 09:41:33 +03:00
|
|
|
"maven.executable.options": {
|
2018-04-08 04:44:56 +03:00
|
|
|
"type": "string",
|
|
|
|
"default": "",
|
2018-11-21 08:17:02 +03:00
|
|
|
"description": "%configuration.maven.executable.options%",
|
2018-04-08 04:44:56 +03:00
|
|
|
"scope": "resource"
|
|
|
|
},
|
2018-03-18 18:20:03 +03:00
|
|
|
"maven.terminal.useJavaHome": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": false,
|
2018-11-21 08:17:02 +03:00
|
|
|
"description": "%configuration.maven.terminal.useJavaHome%",
|
2018-03-18 18:20:03 +03:00
|
|
|
"scope": "window"
|
|
|
|
},
|
|
|
|
"maven.terminal.customEnv": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"title": "environment setting",
|
2019-03-05 10:00:22 +03:00
|
|
|
"required": [
|
|
|
|
"environmentVariable",
|
|
|
|
"value"
|
|
|
|
],
|
2018-03-18 18:20:03 +03:00
|
|
|
"properties": {
|
|
|
|
"environmentVariable": {
|
|
|
|
"type": "string",
|
2019-03-05 10:00:22 +03:00
|
|
|
"minLength": 1,
|
2018-11-21 08:17:02 +03:00
|
|
|
"description": "%configuration.maven.terminal.customEnv.environmentVariable%"
|
2018-03-18 18:20:03 +03:00
|
|
|
},
|
2018-03-27 19:30:26 +03:00
|
|
|
"value": {
|
|
|
|
"type": "string",
|
2018-11-21 08:17:02 +03:00
|
|
|
"description": "%configuration.maven.terminal.customEnv.value%"
|
2018-03-18 18:20:03 +03:00
|
|
|
}
|
2018-03-27 19:30:26 +03:00
|
|
|
}
|
2018-03-18 18:20:03 +03:00
|
|
|
},
|
|
|
|
"default": [],
|
2018-11-21 08:17:02 +03:00
|
|
|
"description": "%configuration.maven.terminal.customEnv%",
|
2018-03-18 18:20:03 +03:00
|
|
|
"scope": "window"
|
2018-12-28 04:46:01 +03:00
|
|
|
},
|
2019-03-04 10:42:39 +03:00
|
|
|
"maven.terminal.favorites": {
|
2019-03-04 08:58:45 +03:00
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"title": "Favorite commands",
|
2019-03-05 10:00:22 +03:00
|
|
|
"required": [
|
|
|
|
"alias",
|
|
|
|
"command"
|
|
|
|
],
|
2019-03-04 08:58:45 +03:00
|
|
|
"properties": {
|
|
|
|
"alias": {
|
|
|
|
"type": "string",
|
2019-03-05 10:00:22 +03:00
|
|
|
"minLength": 1,
|
2019-03-04 08:58:45 +03:00
|
|
|
"description": "%configuration.maven.terminal.favorites.alias%"
|
|
|
|
},
|
|
|
|
"command": {
|
|
|
|
"type": "string",
|
2019-03-05 10:00:22 +03:00
|
|
|
"minLength": 1,
|
2019-03-04 08:58:45 +03:00
|
|
|
"description": "%configuration.maven.terminal.favorites.command%"
|
2020-01-22 06:19:10 +03:00
|
|
|
},
|
|
|
|
"debug": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": false,
|
|
|
|
"description": "%configuration.maven.terminal.favorites.debug%"
|
2019-03-04 08:58:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"default": [],
|
|
|
|
"description": "%configuration.maven.terminal.favorites%",
|
|
|
|
"scope": "resource"
|
|
|
|
},
|
2018-12-28 11:20:26 +03:00
|
|
|
"maven.view": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"flat",
|
|
|
|
"hierarchical"
|
|
|
|
],
|
|
|
|
"default": "flat",
|
2019-01-23 09:09:34 +03:00
|
|
|
"scope": "window",
|
2018-12-28 11:20:26 +03:00
|
|
|
"description": "%configuration.maven.view%"
|
2019-05-03 05:19:50 +03:00
|
|
|
},
|
|
|
|
"maven.pomfile.globPattern": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "**/pom.xml",
|
2019-05-17 10:03:13 +03:00
|
|
|
"description": "%configuration.maven.pomfile.globPattern%",
|
2019-05-03 05:19:50 +03:00
|
|
|
"scope": "window"
|
2019-05-20 06:05:27 +03:00
|
|
|
},
|
|
|
|
"maven.pomfile.autoUpdateEffectivePOM": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": false,
|
|
|
|
"description": "%configuration.maven.pomfile.autoUpdateEffectivePOM%",
|
|
|
|
"scope": "window"
|
2017-11-10 12:25:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"scripts": {
|
2018-12-10 05:46:07 +03:00
|
|
|
"vscode:prepublish": "webpack --mode production",
|
2019-09-05 12:37:28 +03:00
|
|
|
"build-plugin": "gulp build-plugin",
|
2017-11-10 12:25:04 +03:00
|
|
|
"compile": "tsc -p ./",
|
2019-09-11 10:00:31 +03:00
|
|
|
"tslint": "tslint -t verbose --project tslint.json",
|
2018-12-13 10:45:31 +03:00
|
|
|
"watch": "webpack --mode development --watch --info-verbosity verbose",
|
2019-07-16 05:56:21 +03:00
|
|
|
"test": "npm run compile && node ./out/test/runTest.js",
|
2018-12-13 10:45:31 +03:00
|
|
|
"webpack": "webpack --mode development"
|
2017-11-10 12:25:04 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-06-21 07:58:19 +03:00
|
|
|
"@types/fs-extra": "^4.0.9",
|
2019-07-16 05:56:21 +03:00
|
|
|
"@types/glob": "^7.1.1",
|
2019-07-22 05:57:07 +03:00
|
|
|
"@types/lodash": "^4.14.136",
|
2018-12-10 05:46:07 +03:00
|
|
|
"@types/md5": "^2.1.33",
|
|
|
|
"@types/minimatch": "^3.0.3",
|
2019-07-16 05:56:21 +03:00
|
|
|
"@types/mocha": "^5.2.7",
|
2019-07-22 05:57:07 +03:00
|
|
|
"@types/node": "^10.14.13",
|
2020-03-12 06:19:27 +03:00
|
|
|
"@types/vscode": "1.43.0",
|
2019-06-21 06:20:23 +03:00
|
|
|
"@types/which": "^1.3.1",
|
2019-06-21 07:58:19 +03:00
|
|
|
"@types/xml2js": "^0.4.4",
|
2019-07-16 05:56:21 +03:00
|
|
|
"glob": "^7.1.4",
|
2019-08-30 09:22:33 +03:00
|
|
|
"gulp": "^4.0.2",
|
2019-07-16 05:56:21 +03:00
|
|
|
"mocha": "^4.1.0",
|
2018-12-10 05:46:07 +03:00
|
|
|
"ts-loader": "^4.4.2",
|
2019-07-22 05:57:07 +03:00
|
|
|
"tslint": "^5.18.0",
|
2017-12-05 10:59:32 +03:00
|
|
|
"tslint-microsoft-contrib": "^5.0.1",
|
2018-09-10 05:05:59 +03:00
|
|
|
"typescript": "^2.9.2",
|
2019-07-22 05:57:07 +03:00
|
|
|
"vscode-test": "^1.0.2",
|
|
|
|
"webpack": "^4.36.1",
|
|
|
|
"webpack-cli": "^3.3.6"
|
2017-11-10 12:25:04 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-09-11 10:00:31 +03:00
|
|
|
"axios": "^0.19.0",
|
2019-06-21 07:58:19 +03:00
|
|
|
"fast-glob": "^2.2.7",
|
2017-12-11 08:52:13 +03:00
|
|
|
"fs-extra": "^4.0.3",
|
2019-03-25 10:14:36 +03:00
|
|
|
"get-port": "^4.2.0",
|
2019-07-22 05:57:07 +03:00
|
|
|
"lodash": "^4.17.15",
|
2017-11-15 09:59:07 +03:00
|
|
|
"md5": "^2.2.1",
|
2017-12-11 10:12:37 +03:00
|
|
|
"minimatch": "^3.0.4",
|
2019-04-10 08:27:19 +03:00
|
|
|
"vscode-extension-telemetry-wrapper": "^0.4.0",
|
2019-09-11 10:00:31 +03:00
|
|
|
"vscode-languageserver-protocol": "^3.14.1",
|
2019-06-21 06:20:23 +03:00
|
|
|
"which": "^1.3.1",
|
2018-12-27 06:20:49 +03:00
|
|
|
"xml-zero-lexer": "^2.0.5",
|
2018-09-10 05:05:59 +03:00
|
|
|
"xml2js": "^0.4.19"
|
2017-11-10 12:25:04 +03:00
|
|
|
}
|
2017-12-05 10:59:32 +03:00
|
|
|
}
|