This commit is contained in:
Yan Zhang 2023-01-18 17:05:13 +08:00 коммит произвёл GitHub
Родитель 0841d267b5
Коммит 8a1b6a17ec
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 11 добавлений и 7 удалений

Просмотреть файл

@ -1,6 +1,10 @@
# Change Log
All notable changes to the "vscode-maven" extension will be documented in this file.
## 0.40.4
### Fixed
- Missing "Resolve Unknow Type" feature when Language Support for Java was upgraded to v1.14.0. [#932](https://github.com/microsoft/vscode-maven/issues/932)
## 0.40.3
### Fixed
- Cannot navigate to POM of dependencies when `localRepository` is specified in settings.xml. [#924](https://github.com/microsoft/vscode-maven/issues/924)

Просмотреть файл

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: com.microsoft.java.maven
Bundle-SymbolicName: com.microsoft.java.maven.plugin;singleton:=true
Bundle-Version: 0.38.0
Bundle-Version: 0.39.0
Bundle-Activator: com.microsoft.java.maven.PluginActivator
Bundle-RequiredExecutionEnvironment: JavaSE-17
Import-Package: org.eclipse.jdt.core,

Просмотреть файл

@ -4,7 +4,7 @@
<parent>
<groupId>com.microsoft.java.maven</groupId>
<artifactId>parent</artifactId>
<version>0.38.0</version>
<version>0.39.0</version>
</parent>
<artifactId>com.microsoft.java.maven.plugin</artifactId>
<packaging>eclipse-plugin</packaging>

Просмотреть файл

@ -4,7 +4,7 @@
<groupId>com.microsoft.java.maven</groupId>
<artifactId>parent</artifactId>
<name>${base.name} :: Parent</name>
<version>0.38.0</version>
<version>0.39.0</version>
<packaging>pom</packaging>
<properties>
<base.name>JDTLS Maven Extension</base.name>

4
package-lock.json сгенерированный
Просмотреть файл

@ -1,12 +1,12 @@
{
"name": "vscode-maven",
"version": "0.40.3",
"version": "0.40.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "vscode-maven",
"version": "0.40.3",
"version": "0.40.4",
"license": "MIT",
"dependencies": {
"domhandler": "^5.0.3",

Просмотреть файл

@ -2,7 +2,7 @@
"name": "vscode-maven",
"displayName": "Maven for Java",
"description": "%description%",
"version": "0.40.3",
"version": "0.40.4",
"icon": "resources/logo.png",
"publisher": "vscjava",
"preview": true,
@ -65,7 +65,7 @@
"main": "./dist/extension",
"contributes": {
"javaExtensions": [
"./jdtls.ext/com.microsoft.java.maven.plugin/target/com.microsoft.java.maven.plugin-0.38.0.jar"
"./jdtls.ext/com.microsoft.java.maven.plugin/target/com.microsoft.java.maven.plugin-0.39.0.jar"
],
"commands": [
{