Remove oboslete projects related to boot-java/boot-properties in atom/vscode/headless

This commit is contained in:
Kris De Volder
2018-02-22 15:07:04 -08:00
parent 285225332c
commit 951c054f10
55 changed files with 0 additions and 2214 deletions

View File

@@ -1,3 +0,0 @@
.idea/
server/
node_modules/

View File

@@ -1,3 +0,0 @@
.idea/
server/
node_modules/

View File

@@ -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

View File

@@ -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)

View File

@@ -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

View File

@@ -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();

View File

@@ -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"
}
}

View File

@@ -1,3 +0,0 @@
.idea/
server/
node_modules/

View File

@@ -1,3 +0,0 @@
.idea/
server/
node_modules/

View File

@@ -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

View File

@@ -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)

View File

@@ -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

View File

@@ -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();

View File

@@ -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"
}
}