Remove oboslete projects related to boot-java/boot-properties in atom/vscode/headless
This commit is contained in:
3
atom-extensions/atom-boot-java/.gitignore
vendored
3
atom-extensions/atom-boot-java/.gitignore
vendored
@@ -1,3 +0,0 @@
|
||||
.idea/
|
||||
server/
|
||||
node_modules/
|
||||
@@ -1,3 +0,0 @@
|
||||
.idea/
|
||||
server/
|
||||
node_modules/
|
||||
@@ -1,15 +0,0 @@
|
||||
language: objective-c
|
||||
|
||||
notifications:
|
||||
email:
|
||||
on_success: never
|
||||
on_failure: change
|
||||
|
||||
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
|
||||
|
||||
git:
|
||||
depth: 10
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
@@ -1,3 +0,0 @@
|
||||
# Atom package for Spring Boot projects __(Obsolete)__
|
||||
|
||||
It has been merged with Spring Boot Properties support and has moved to [Spring Boot](https://github.com/spring-projects/atom-spring-boot)
|
||||
@@ -1,27 +0,0 @@
|
||||
version: "{build}"
|
||||
|
||||
platform: x64
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
clone_depth: 10
|
||||
|
||||
skip_tags: true
|
||||
|
||||
environment:
|
||||
APM_TEST_PACKAGES:
|
||||
|
||||
matrix:
|
||||
- ATOM_CHANNEL: stable
|
||||
- ATOM_CHANNEL: beta
|
||||
|
||||
install:
|
||||
- ps: Install-Product node 6
|
||||
|
||||
build_script:
|
||||
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))
|
||||
|
||||
test: off
|
||||
deploy: off
|
||||
@@ -1,39 +0,0 @@
|
||||
const {AutoLanguageClient} = require('atom-languageclient');
|
||||
|
||||
class BootJavaLanguageClient extends AutoLanguageClient {
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
}
|
||||
|
||||
getGrammarScopes() {
|
||||
return [];
|
||||
}
|
||||
|
||||
getLanguageName() {
|
||||
return 'boot-java';
|
||||
}
|
||||
|
||||
getServerName() {
|
||||
return 'Spring Boot';
|
||||
}
|
||||
|
||||
activate() {
|
||||
const notification = atom.notifications.addInfo('`boot-java` Extension __NOT__ Functional', {
|
||||
dismissable: true,
|
||||
detail: '`boot-java` extension starting from 0.1.4 is obsolete',
|
||||
description: 'The `boot-java` extension is obsolete and no longer functional. Please uninstall it and install the `spring-boot` extension instead.',
|
||||
buttons: [{
|
||||
text: 'OK',
|
||||
onDidClick: () => {
|
||||
notification.dismiss();
|
||||
}
|
||||
}]
|
||||
});
|
||||
super.activate();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
module.exports = new BootJavaLanguageClient();
|
||||
@@ -1,21 +0,0 @@
|
||||
{
|
||||
"name": "boot-java",
|
||||
"main": "./lib/main",
|
||||
"version": "0.1.4",
|
||||
"description": "Spring Boot support for Atom",
|
||||
"repository": "https://github.com/spring-projects/atom-boot-java",
|
||||
"icon": "icon.png",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"atom": ">=1.21.0"
|
||||
},
|
||||
"files": [
|
||||
"lib/"
|
||||
],
|
||||
"dependencies": {
|
||||
"atom-languageclient": "0.8.0"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rm -fr node_modules"
|
||||
}
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
.idea/
|
||||
server/
|
||||
node_modules/
|
||||
@@ -1,3 +0,0 @@
|
||||
.idea/
|
||||
server/
|
||||
node_modules/
|
||||
@@ -1,15 +0,0 @@
|
||||
language: objective-c
|
||||
|
||||
notifications:
|
||||
email:
|
||||
on_success: never
|
||||
on_failure: change
|
||||
|
||||
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
|
||||
|
||||
git:
|
||||
depth: 10
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
@@ -1,3 +0,0 @@
|
||||
# Atom package and Language Server for Spring Boot Application Properties __(Obsolete)__
|
||||
|
||||
It has been merged with Spring Boot support and has moved to [Spring Boot](https://github.com/spring-projects/atom-spring-boot)
|
||||
@@ -1,27 +0,0 @@
|
||||
version: "{build}"
|
||||
|
||||
platform: x64
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
clone_depth: 10
|
||||
|
||||
skip_tags: true
|
||||
|
||||
environment:
|
||||
APM_TEST_PACKAGES:
|
||||
|
||||
matrix:
|
||||
- ATOM_CHANNEL: stable
|
||||
- ATOM_CHANNEL: beta
|
||||
|
||||
install:
|
||||
- ps: Install-Product node 6
|
||||
|
||||
build_script:
|
||||
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))
|
||||
|
||||
test: off
|
||||
deploy: off
|
||||
@@ -1,38 +0,0 @@
|
||||
const {AutoLanguageClient} = require('atom-languageclient');
|
||||
|
||||
class BootPropertiesClient extends AutoLanguageClient {
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
}
|
||||
|
||||
getGrammarScopes() {
|
||||
return [];
|
||||
}
|
||||
|
||||
getLanguageName() {
|
||||
return 'Boot-Properties';
|
||||
}
|
||||
|
||||
getServerName() {
|
||||
return 'Boot-Properties';
|
||||
}
|
||||
|
||||
activate() {
|
||||
const notification = atom.notifications.addInfo('`boot-properties` Extension __NOT__ Functional', {
|
||||
dismissable: true,
|
||||
detail: '`boot-properties` extension starting from 0.1.4 is obsolete',
|
||||
description: 'The `boot-properties` extension is obsolete and no longer functional. Please uninstall it and install the `spring-boot` extension instead.',
|
||||
buttons: [{
|
||||
text: 'OK',
|
||||
onDidClick: () => {
|
||||
notification.dismiss();
|
||||
}
|
||||
}]
|
||||
});
|
||||
super.activate();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
module.exports = new BootPropertiesClient();
|
||||
@@ -1,21 +0,0 @@
|
||||
{
|
||||
"name": "boot-properties",
|
||||
"main": "./lib/main",
|
||||
"version": "0.1.4",
|
||||
"description": "Spring Boot Properties support for Atom",
|
||||
"repository": "https://github.com/spring-projects/atom-boot-properties",
|
||||
"icon": "icon.png",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"atom": ">=1.21.0"
|
||||
},
|
||||
"files": [
|
||||
"lib/"
|
||||
],
|
||||
"dependencies": {
|
||||
"atom-languageclient": "0.8.0"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rm -fr node_modules"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user