Skip to content

Commit

Permalink
[#57] Add org.eclipse.cdt.lsp.feature (#58)
Browse files Browse the repository at this point in the history
Added "C/C++ LSP Support" feature

Fixes #57

Signed-off-by: Alexander Fedorov <[email protected]>
  • Loading branch information
ruspl-afed authored May 11, 2023
1 parent d742e8d commit 257cf9a
Show file tree
Hide file tree
Showing 6 changed files with 129 additions and 0 deletions.
17 changes: 17 additions & 0 deletions features/org.eclipse.cdt.lsp.feature/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>org.eclipse.cdt.lsp.feature</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.pde.FeatureBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.FeatureNature</nature>
</natures>
</projectDescription>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
15 changes: 15 additions & 0 deletions features/org.eclipse.cdt.lsp.feature/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
###############################################################################
# Copyright (c) 2023 ArSysOp.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# ArSysOp - initial API and implementation
###############################################################################
bin.includes = feature.xml,\
feature.properties
38 changes: 38 additions & 0 deletions features/org.eclipse.cdt.lsp.feature/feature.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
###############################################################################
# Copyright (c) 2023 ArSysOp.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# ArSysOp - initial API and implementation
###############################################################################
# features.properties
# contains externalized strings for feature.xml
# "%foo" in feature.xml corresponds to the key "foo" in this file
# java.io.Properties file (ISO 8859-1 with "\" escapes)
# This file should be translated.

# "featureName" property - name of the feature
featureName=C/C++ LSP Support

# "providerName" property - name of the company that provides the feature
providerName=Eclipse CDT

# "description" property - description of the feature
description=Eclipse C/C++ Language Server Protocol support.

# copyright
copyright=\
Copyright (c) 2023 Contributors to the Eclipse Foundation.\n\
\n\
This program and the accompanying materials are made\n\
available under the terms of the Eclipse Public License 2.0\n\
which is available at https://www.eclipse.org/legal/epl-2.0/\n\
\n\
SPDX-License-Identifier: EPL-2.0\n\
46 changes: 46 additions & 0 deletions features/org.eclipse.cdt.lsp.feature/feature.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2023 ArSysOp
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
-->
<feature
id="org.eclipse.cdt.lsp.feature"
label="%featureName"
version="1.0.0.qualifier"
provider-name="%providerName"
license-feature="org.eclipse.license"
license-feature-version="0.0.0">

<description>
%description
</description>

<copyright>
%copyright
</copyright>

<license url="%licenseURL">
%license
</license>

<plugin
id="org.eclipse.cdt.lsp"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="org.eclipse.cdt.lsp.editor.ui"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

</feature>
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<!--
Copyright (c) 2023 Contributors to the Eclipse Foundation.
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
-->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.cdt.lsp</groupId>
Expand Down Expand Up @@ -83,6 +93,7 @@

<modules>
<module>bundles</module>
<module>features</module>
<module>releng/org.eclipse.cdt.lsp.target</module>
</modules>
</project>

0 comments on commit 257cf9a

Please sign in to comment.