Merge branch 'main' into jdt-diagnostics-via-symbols
This commit is contained in:
34
.github/scripts/generate-composite-site-files.sh
vendored
Executable file
34
.github/scripts/generate-composite-site-files.sh
vendored
Executable file
@@ -0,0 +1,34 @@
|
||||
val=$1
|
||||
url=$2
|
||||
|
||||
rm -f ./compositeArtifacts.xml
|
||||
rm -f ./compositeContent.xml
|
||||
rm -f ./p2.index
|
||||
|
||||
echo "<?xml version='1.0' encoding='UTF-8'?>" >> compositeArtifacts.xml
|
||||
echo "<?compositeArtifactRepository version='1.0.0'?>" >> compositeArtifacts.xml
|
||||
echo "<repository name='Spring Tool Suite 4'" >> compositeArtifacts.xml
|
||||
echo " type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>" >> compositeArtifacts.xml
|
||||
echo " <properties size='1'>" >> compositeArtifacts.xml
|
||||
echo " <property name='p2.timestamp' value='${val}'/>" >> compositeArtifacts.xml
|
||||
echo " </properties>" >> compositeArtifacts.xml
|
||||
echo " <children size='1'>" >> compositeArtifacts.xml
|
||||
echo " <child location='${url}'/>" >> compositeArtifacts.xml
|
||||
echo " </children>" >> compositeArtifacts.xml
|
||||
echo "</repository>" >> compositeArtifacts.xml
|
||||
|
||||
echo "<?xml version='1.0' encoding='UTF-8'?>" >> compositeContent.xml
|
||||
echo "<?compositeMetadataRepository version='1.0.0'?>" >> compositeContent.xml
|
||||
echo "<repository name='Spring Tool Suite 4'" >> compositeContent.xml
|
||||
echo " type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1.0.0'>" >> compositeContent.xml
|
||||
echo " <properties size='1'>" >> compositeContent.xml
|
||||
echo " <property name='p2.timestamp' value='${val}'/>" >> compositeContent.xml
|
||||
echo " </properties>" >> compositeContent.xml
|
||||
echo " <children size='1'>" >> compositeContent.xml
|
||||
echo " <child location='${url}'/>" >> compositeContent.xml
|
||||
echo " </children>" >> compositeContent.xml
|
||||
echo "</repository>" >> compositeContent.xml
|
||||
|
||||
echo "version=1" >> p2.index
|
||||
echo "metadata.repository.factory.order=compositeContent.xml,!" >> p2.index
|
||||
echo "artifact.repository.factory.order=compositeArtifacts.xml,!" >> p2.index
|
||||
57
.github/workflows/aggregate-distro-update-sites.yml
vendored
Normal file
57
.github/workflows/aggregate-distro-update-sites.yml
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
name: Aggregate Distro Update Sites
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
version:
|
||||
description: Version suffix in S3 (i.e. 4.19.1.RELEASE)
|
||||
required: true
|
||||
type: string
|
||||
latest:
|
||||
description: Latest eclipse release version (i.e. e4.28)
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
|
||||
update-aggregate-update-sites:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
|
||||
with:
|
||||
sparse-checkout: |
|
||||
.github
|
||||
- name: Timestamp
|
||||
id: timestamp
|
||||
run: echo "date=`echo $(($(date +%s%N) / 1000000))`" >> $GITHUB_OUTPUT
|
||||
- name: Generate and Upload Aggregate Update Sites Data
|
||||
env:
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.TOOLS_S3_ACCESS_KEY }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.TOOLS_S3_SECRET_KEY }}
|
||||
AWS_DEFAULT_REGION: us-east-1
|
||||
CLOUDFLARE_ZONE_ID: ${{ secrets.CLOUDFLARE_ZONE_ID }}
|
||||
CLOUDFLARE_CACHE_TOKEN: ${{ secrets.CLOUDFLARE_CACHE_TOKEN }}
|
||||
run: |
|
||||
dirs=`aws s3 ls s3://dist.springsource.com/release/TOOLS/sts4/update/${{ inputs.version }}/`
|
||||
pattern='^e[0-9]+.[0-9]+/$'
|
||||
for dir in $dirs
|
||||
do
|
||||
if [[ "$dir" =~ $pattern ]]; then
|
||||
echo "Found ${dir}"
|
||||
dir_name=${dir:0:-1}
|
||||
site_url="https://download.springsource.com/release/TOOLS/sts4/update/${{ inputs.version }}/${dir_name}"
|
||||
${{ github.workspace }}/.github/scripts/generate-composite-site-files.sh ${{ steps.timestamp.outputs.date }} $site_url
|
||||
cat ./compositeArtifacts.xml
|
||||
cat ./compositeContent.xml
|
||||
if [[ ${dir_name} == ${{ inputs.latest }} ]]; then
|
||||
aws s3 cp ./compositeArtifacts.xml s3://dist.springsource.com/release/TOOLS/sts4/update/latest/ --acl public-read
|
||||
aws s3 cp ./compositeContent.xml s3://dist.springsource.com/release/TOOLS/sts4/update/latest/ --acl public-read
|
||||
aws s3 cp ./p2.index s3://dist.springsource.com/release/TOOLS/sts4/update/latest/ --acl public-read
|
||||
${{ github.workspace }}/.github/scripts/clear-s3-caches.sh release/TOOLS/sts4/update/latest
|
||||
fi
|
||||
aws s3 mv ./compositeArtifacts.xml s3://dist.springsource.com/release/TOOLS/sts4/update/${dir} --acl public-read
|
||||
aws s3 mv ./compositeContent.xml s3://dist.springsource.com/release/TOOLS/sts4/update/${dir} --acl public-read
|
||||
aws s3 mv ./p2.index s3://dist.springsource.com/release/TOOLS/sts4/update/${dir} --acl public-read
|
||||
${{ github.workspace }}/.github/scripts/clear-s3-caches.sh release/TOOLS/sts4/update/${dir_name}
|
||||
fi
|
||||
done
|
||||
38
.github/workflows/aggregate-ls-extensions-update-site.yml
vendored
Normal file
38
.github/workflows/aggregate-ls-extensions-update-site.yml
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
name: Aggregate LS Extensions Update Sites
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
version:
|
||||
description: The suffix of the p2 repo URL in S3 (i.e. 2023-08-01)
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
|
||||
update-aggregate-update-sites:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
|
||||
with:
|
||||
sparse-checkout: |
|
||||
.github
|
||||
- name: Timestamp
|
||||
id: timestamp
|
||||
run: echo "date=`echo $(($(date +%s%N) / 1000000))`" >> $GITHUB_OUTPUT
|
||||
- name: Generate and Upload Aggregate Update Sites Data
|
||||
env:
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.TOOLS_S3_ACCESS_KEY }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.TOOLS_S3_SECRET_KEY }}
|
||||
AWS_DEFAULT_REGION: us-east-1
|
||||
CLOUDFLARE_ZONE_ID: ${{ secrets.CLOUDFLARE_ZONE_ID }}
|
||||
CLOUDFLARE_CACHE_TOKEN: ${{ secrets.CLOUDFLARE_CACHE_TOKEN }}
|
||||
run: |
|
||||
site_url="https://download.springsource.com/release/TOOLS/sts4-language-server-integrations/${{ inputs.version }}"
|
||||
${{ github.workspace }}/.github/scripts/generate-composite-site-files.sh ${{ steps.timestamp.outputs.date }} $site_url
|
||||
cat ./compositeArtifacts.xml
|
||||
cat ./compositeContent.xml
|
||||
aws s3 cp ./compositeArtifacts.xml s3://dist.springsource.com/release/TOOLS/sts4-language-server-integrations/ --acl public-read
|
||||
aws s3 cp ./compositeContent.xml s3://dist.springsource.com/release/TOOLS/sts4-language-server-integrations/ --acl public-read
|
||||
aws s3 cp ./p2.index s3://dist.springsource.com/release/TOOLS/sts4-language-server-integrations/ --acl public-read
|
||||
${{ github.workspace }}/.github/scripts/clear-s3-caches.sh release/TOOLS/sts4-language-server-integrations
|
||||
@@ -4,12 +4,12 @@ concurrency:
|
||||
group: eclipse-ls-extension-snapshot
|
||||
cancel-in-progress: true
|
||||
|
||||
#on:
|
||||
# workflow_dispatch:
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
workflow_dispatch:
|
||||
#on:
|
||||
# push:
|
||||
# branches:
|
||||
# - 'main'
|
||||
|
||||
jobs:
|
||||
eclipse-ls-extensions:
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<feature
|
||||
id="org.springframework.boot.ide.branding.feature"
|
||||
label="Spring Tool Suite 4 Branding Feature"
|
||||
version="4.19.1.qualifier"
|
||||
version="4.20.0.qualifier"
|
||||
provider-name="VMware, Inc.">
|
||||
|
||||
<plugin
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.springframework.boot.ide.branding;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.equinox.p2.ui,
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?pde version="3.5"?>
|
||||
<product name="Spring Tool Suite 4" id="org.springframework.boot.ide.branding.sts4" uid="org.springframework.boot.ide.branding.sts4" application="org.eclipse.ui.ide.workbench" version="4.19.1.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
<product name="Spring Tool Suite 4" id="org.springframework.boot.ide.branding.sts4" uid="org.springframework.boot.ide.branding.sts4" application="org.eclipse.ui.ide.workbench" version="4.20.0.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
|
||||
<configIni use="default">
|
||||
</configIni>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?pde version="3.5"?>
|
||||
<product name="Spring Tool Suite 4" id="org.springframework.boot.ide.branding.sts4" uid="org.springframework.boot.ide.branding.sts4" application="org.eclipse.ui.ide.workbench" version="4.19.1.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
<product name="Spring Tool Suite 4" id="org.springframework.boot.ide.branding.sts4" uid="org.springframework.boot.ide.branding.sts4" application="org.eclipse.ui.ide.workbench" version="4.20.0.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
|
||||
<configIni use="default">
|
||||
</configIni>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?pde version="3.5"?>
|
||||
<product name="Spring Tool Suite 4" id="org.springframework.boot.ide.branding.sts4" uid="org.springframework.boot.ide.branding.sts4" application="org.eclipse.ui.ide.workbench" version="4.19.1.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
<product name="Spring Tool Suite 4" id="org.springframework.boot.ide.branding.sts4" uid="org.springframework.boot.ide.branding.sts4" application="org.eclipse.ui.ide.workbench" version="4.20.0.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
|
||||
<configIni use="default">
|
||||
</configIni>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?pde version="3.5"?>
|
||||
<product name="Spring Tool Suite 4" id="org.springframework.boot.ide.branding.sts4" uid="org.springframework.boot.ide.branding.sts4" application="org.eclipse.ui.ide.workbench" version="4.19.1.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
<product name="Spring Tool Suite 4" id="org.springframework.boot.ide.branding.sts4" uid="org.springframework.boot.ide.branding.sts4" application="org.eclipse.ui.ide.workbench" version="4.20.0.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
|
||||
<configIni use="default">
|
||||
</configIni>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?pde version="3.5"?>
|
||||
<product name="Spring Tool Suite 4" id="org.springframework.boot.ide.branding.sts4" uid="org.springframework.boot.ide.branding.sts4" application="org.eclipse.ui.ide.workbench" version="4.19.1.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
<product name="Spring Tool Suite 4" id="org.springframework.boot.ide.branding.sts4" uid="org.springframework.boot.ide.branding.sts4" application="org.eclipse.ui.ide.workbench" version="4.20.0.qualifier" useFeatures="true" includeLaunchers="true">
|
||||
|
||||
<configIni use="default">
|
||||
</configIni>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<organization>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<feature
|
||||
id="org.springframework.boot.ide.main.feature"
|
||||
label="Spring Tool Suite 4 Main Feature"
|
||||
version="4.19.1.qualifier"
|
||||
version="4.20.0.qualifier"
|
||||
provider-name="VMware, Inc.">
|
||||
|
||||
<description>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Live Beans Tree
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.beans.ui.live;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Export-Package: org.springframework.ide.eclipse.beans.ui.live,
|
||||
org.springframework.ide.eclipse.beans.ui.live.actions,
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.dash.azure;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Vendor: VMware, Inc
|
||||
Bundle-Name: Spring Boot Dash CF Support
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: org.springframework.ide.eclipse.boot.dash.docker
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.dash.docker;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Automatic-Module-Name: org.springframework.ide.eclipse.boot.dash.docker
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Require-Bundle: org.springframework.ide.eclipse.boot.dash,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<feature
|
||||
id="org.springframework.ide.eclipse.boot.dash.feature"
|
||||
label="%featureName"
|
||||
version="4.19.1.qualifier"
|
||||
version="4.20.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
plugin="org.springframework.ide.eclipse">
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Test
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.dash.test
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Vendor: VMware, Inc
|
||||
Require-Bundle: org.junit,
|
||||
org.eclipse.core.resources,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Boot Dashboard integration with Xterm view
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.dash.xterm;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Automatic-Module-Name: org.springframework.ide.eclipse.boot.dash.xterm
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Spring Boot Dashboard View
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.dash;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Activator: org.springframework.ide.eclipse.boot.dash.BootDashActivator
|
||||
Bundle-Vendor: VMware, Inc
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Boot Launch Tests
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.launch.test
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
org.junit,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Boot Launch
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.launch;singleton:=true
|
||||
Bundle-Vendor: VMware, Inc
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
org.eclipse.core.resources,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Test
|
||||
Fragment-Host: org.springframework.ide.eclipse.boot.refactoring;bundle-version="3.7.3"
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.refactoring.test
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Vendor: VMware, Inc
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.junit,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-Localization: plugin
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.refactoring;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Activator: org.springframework.ide.eclipse.boot.refactoring.SpringBootRefactoringPlugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.eclipse.core.runtime,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.restart;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Vendor: VMware, Inc
|
||||
Bundle-Name: Spring Boot Devtools Easy Restart
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Templates
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.templates;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Require-Bundle: org.eclipse.jdt.core,
|
||||
org.eclipse.text,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Boot Tests
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.test
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.junit,
|
||||
org.springsource.ide.eclipse.commons.livexp,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Validation
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.validation;singleton:=true
|
||||
Bundle-Vendor: VMware, Inc
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Activator: org.springframework.ide.eclipse.boot.validation.BootValidationActivator
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.core.resources,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Boot UI Support
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot.wizard;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
org.springsource.ide.eclipse.commons.livexp;bundle-version="3.8.4",
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Boot
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.boot;singleton:=true
|
||||
Bundle-Vendor: VMware, Inc
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Activator: org.springframework.ide.eclipse.boot.core.BootActivator
|
||||
Require-Bundle: org.eclipse.core.resources,
|
||||
org.eclipse.m2e.core,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.buildship30;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Eclipse-LazyStart: true
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: org.springframework.ide.eclipse.docker.client.wrapper
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.docker.client;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Automatic-Module-Name: org.springframework.ide.eclipse.docker.client.wrapper
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Bundle-ClassPath: .,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.imports;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Localization: plugin
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Activator: org.springframework.ide.eclipse.imports.ImportsActivator
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Maven POM Compare Tests
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.maven.pom.tests
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Automatic-Module-Name: org.springframework.ide.eclipse.maven.pom.tests
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Require-Bundle: org.junit,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Maven POM Compare
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.maven.pom;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Automatic-Module-Name: org.springframework.ide.eclipse.maven.pom
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Require-Bundle: org.eclipse.compare,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<feature
|
||||
id="org.springframework.ide.eclipse.xml.namespaces.feature"
|
||||
label="%featureName"
|
||||
version="4.19.1.qualifier"
|
||||
version="4.20.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
plugin="org.springframework.ide.eclipse">
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ Import-Package: org.eclipse.core.commands.common,
|
||||
org.springsource.ide.eclipse.commons.frameworks.core.util,
|
||||
org.springsource.ide.eclipse.commons.ui
|
||||
Bundle-Activator: org.springframework.ide.eclipse.xml.namespaces.SpringXmlNamespacesPlugin
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Export-Package: org.springframework.ide.eclipse.xml.namespaces,
|
||||
org.springframework.ide.eclipse.xml.namespaces.classpath,
|
||||
org.springframework.ide.eclipse.xml.namespaces.internal,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<feature
|
||||
id="org.springframework.ide.eclipse.xterm.feature"
|
||||
label="%featureName"
|
||||
version="4.19.1.qualifier"
|
||||
version="4.20.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
plugin="org.springframework.ide.eclipse">
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.springframework.ide.eclipse</groupId>
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Node-Xterm package for Linux
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.xterm.linux.x86_64
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Vendor: VMware
|
||||
Fragment-Host: org.springframework.ide.eclipse.xterm;bundle-version="4.8.2"
|
||||
Automatic-Module-Name: org.springframework.ide.eclipse.xterm.linux.x86.64
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Node-Xterm package for Mac OSX
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.xterm.macosx.x86_64
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Vendor: VMware
|
||||
Fragment-Host: org.springframework.ide.eclipse.xterm;bundle-version="4.8.2"
|
||||
Automatic-Module-Name: org.springframework.ide.eclipse.xterm.macosx.x86.64
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Node-Xterm package for Windows
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.xterm.win32.x86_64
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Vendor: VMware
|
||||
Fragment-Host: org.springframework.ide.eclipse.xterm;bundle-version="4.8.2"
|
||||
Automatic-Module-Name: org.springframework.ide.eclipse.xterm.win32.x86.64
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: org.springframework.ide.eclipse.xterm
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.xterm;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Automatic-Module-Name: org.springframework.ide.eclipse.xterm
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Bundle-Activator: org.springframework.ide.eclipse.xterm.XtermPlugin
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../../eclipse-distribution/pom.xml</relativePath>
|
||||
</parent>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-SymbolicName: org.springframework.ide.eclipse.editor.support
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-Activator: org.springframework.ide.eclipse.editor.support.EditorSupportActivator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.ui,
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<feature
|
||||
id="org.springframework.tooling.boot.ls.feature"
|
||||
label="Spring Boot Language Server Feature"
|
||||
version="4.19.1.qualifier"
|
||||
version="4.20.0.qualifier"
|
||||
provider-name="VMware, Inc.">
|
||||
|
||||
<description>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Spring Boot Language Server
|
||||
Bundle-Vendor: VMware, Inc.
|
||||
Bundle-SymbolicName: org.springframework.tooling.boot.ls;singleton:=true
|
||||
Bundle-Version: 1.48.0.qualifier
|
||||
Bundle-Version: 1.49.0.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.jdt.launching;bundle-version="3.9.0",
|
||||
org.eclipse.core.runtime;bundle-version="3.12.0",
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.springframework.tooling.boot.ls</artifactId>
|
||||
<version>1.48.0-SNAPSHOT</version>
|
||||
<version>1.49.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<build>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<feature
|
||||
id="org.springframework.tooling.bosh.ls.feature"
|
||||
label="BOSH Language Server Feature"
|
||||
version="4.19.1.qualifier"
|
||||
version="4.20.0.qualifier"
|
||||
provider-name="VMware, Inc.">
|
||||
|
||||
<description>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: BOSH Manifest Language Server
|
||||
Bundle-Vendor: VMware, Inc.
|
||||
Bundle-SymbolicName: org.springframework.tooling.bosh.ls;singleton:=true
|
||||
Bundle-Version: 1.48.0.qualifier
|
||||
Bundle-Version: 1.49.0.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.jdt.launching;bundle-version="3.9.0",
|
||||
org.eclipse.core.runtime;bundle-version="3.12.0",
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.springframework.tooling.bosh.ls</artifactId>
|
||||
<version>1.48.0-SNAPSHOT</version>
|
||||
<version>1.49.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<build>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<feature
|
||||
id="org.springframework.tooling.cloudfoundry.manifest.ls.feature"
|
||||
label="%featureName"
|
||||
version="4.19.1.qualifier"
|
||||
version="4.20.0.qualifier"
|
||||
provider-name="%providerName">
|
||||
|
||||
<description>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<feature
|
||||
id="org.springframework.tooling.cloudfoundry.manifest.ls.integration.feature"
|
||||
label="Cloud Foundry Manifest Language Server Generic Editor Integration Feature"
|
||||
version="4.19.1.qualifier"
|
||||
version="4.20.0.qualifier"
|
||||
provider-name="VMware, Inc.">
|
||||
|
||||
<description>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Cloud Foundry Manifest Language Server Generic Editor Integration
|
||||
Bundle-Vendor: VMware, Inc.
|
||||
Bundle-SymbolicName: org.springframework.tooling.cloudfoundry.manifest.ls.integration;singleton:=true
|
||||
Bundle-Version: 4.19.1.qualifier
|
||||
Bundle-Version: 4.20.0.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.jdt.launching;bundle-version="3.9.0",
|
||||
org.eclipse.core.runtime;bundle-version="3.12.0",
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Cloud Foundry Manifest Language Server
|
||||
Bundle-Vendor: VMware, Inc.
|
||||
Bundle-SymbolicName: org.springframework.tooling.cloudfoundry.manifest.ls;singleton:=true
|
||||
Bundle-Version: 1.48.0.qualifier
|
||||
Bundle-Version: 1.49.0.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.jdt.launching;bundle-version="3.8.0",
|
||||
org.eclipse.core.runtime;bundle-version="3.12.0",
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.springframework.tooling.cloudfoundry.manifest.ls</artifactId>
|
||||
<version>1.48.0-SNAPSHOT</version>
|
||||
<version>1.49.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<build>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<feature
|
||||
id="org.springframework.tooling.concourse.ls.feature"
|
||||
label="Concourse Pipeline Language Server Feature"
|
||||
version="4.19.1.qualifier"
|
||||
version="4.20.0.qualifier"
|
||||
provider-name="VMware, Inc.">
|
||||
|
||||
<description>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Concourse Pipeline Language Server
|
||||
Bundle-Vendor: VMware, Inc.
|
||||
Bundle-SymbolicName: org.springframework.tooling.concourse.ls;singleton:=true
|
||||
Bundle-Version: 1.48.0.qualifier
|
||||
Bundle-Version: 1.49.0.qualifier
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Require-Bundle: org.eclipse.jdt.launching;bundle-version="3.9.0",
|
||||
org.eclipse.core.runtime;bundle-version="3.12.0",
|
||||
|
||||
@@ -7,12 +7,12 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot.ide</groupId>
|
||||
<artifactId>org.springframework.boot.ide.servers</artifactId>
|
||||
<version>4.19.1-SNAPSHOT</version>
|
||||
<version>4.20.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>org.springframework.tooling.concourse.ls</artifactId>
|
||||
<version>1.48.0-SNAPSHOT</version>
|
||||
<version>1.49.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
|
||||
<build>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user