-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor plugins - Create Core and UI plugins for base and LSP functi…
…onality. Fixes #143 Signed-off-by: Rastislav Wagner <[email protected]>
- Loading branch information
Showing
96 changed files
with
1,331 additions
and
435 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
36 changes: 36 additions & 0 deletions
36
features/com.redhat.fabric8analytics.eclipse.feature/feature.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
############################################################################### | ||
# Copyright (c) 2017 Red Hat, Inc. and others. | ||
# All rights reserved. This program and the accompanying materials | ||
# are made available under the terms of the Eclipse Public License v1.0 | ||
# which accompanies this distribution, and is available at | ||
# http://www.eclipse.org/legal/epl-v10.html | ||
# | ||
# Contributors: | ||
# Red Hat, Inc. - Initial implementation. | ||
############################################################################## | ||
# feature.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=Fabric8Analytics Integration (Technology Preview) | ||
|
||
# "providerName" property - name of the company that provides the feature | ||
providerName=JBoss by Red Hat | ||
|
||
# "description" property - description of the feature | ||
description=Fabric8Analytics Integration Feature (Technology Preview) | ||
|
||
# "copyright" property - text of the "Feature Update Copyright" | ||
copyright=Copyright (c) 2017 Red Hat, Inc. and others.\nAll rights reserved. This program and the accompanying materials\n | ||
are made available under the terms of the Eclipse Public License v1.0\n\ | ||
which accompanies this distribution, and is available at\n\ | ||
http\://www.eclipse.org/legal/epl-v10.html\n\ | ||
\n\ | ||
Contributors\:\n\ | ||
Red Hat, Inc. - Initial implementation.\n | ||
############### end of copyright property #################################### | ||
|
||
licenseURL=license.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
features/com.redhat.fabric8analytics.eclipse.feature/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<project | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.redhat.fabric8analytics.eclipse</groupId> | ||
<artifactId>features</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
<groupId>com.redhat.fabric8analytics.eclipse</groupId> | ||
<artifactId>com.redhat.fabric8analytics.eclipse.feature</artifactId> | ||
<packaging>eclipse-feature</packaging> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho.extras</groupId> | ||
<artifactId>tycho-source-feature-plugin</artifactId> | ||
<version>${tychoExtrasVersion}</version> | ||
<executions> | ||
<execution> | ||
<id>source-feature</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>source-feature</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<!-- optional excludes --> | ||
<!-- <configuration> | ||
<excludes> | ||
<plugin id="sourcefeature.bundle.nosource"/> | ||
<feature id="sourcefeature.feature.nosource"/> | ||
</excludes> | ||
</configuration> | ||
--> </plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-p2-plugin</artifactId> | ||
<version>${tychoVersion}</version> | ||
<executions> | ||
<execution> | ||
<id>attached-p2-metadata</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>p2-metadata</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
File renamed without changes.
5 changes: 5 additions & 0 deletions
5
features/com.redhat.fabric8analytics.eclipse.lsp.feature/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/bin/ | ||
/.settings/ | ||
/.project | ||
/.classpath | ||
target/ |
5 changes: 5 additions & 0 deletions
5
features/com.redhat.fabric8analytics.eclipse.lsp.feature/build.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
bin.includes = feature.xml,\ | ||
feature.properties | ||
src.includes = feature.xml,\ | ||
feature.properties,\ | ||
build.properties |
File renamed without changes.
28 changes: 28 additions & 0 deletions
28
features/com.redhat.fabric8analytics.eclipse.lsp.feature/feature.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<feature | ||
id="com.redhat.fabric8analytics.eclipse.lsp.feature" | ||
label="%featureName" | ||
version="0.0.1.qualifier" | ||
provider-name="%providerName" | ||
license-feature="org.jboss.tools.foundation.license.feature" | ||
license-feature-version="0.0.0" | ||
plugin="com.redhat.fabric8analytics.eclipse.lsp"> | ||
|
||
<description url="https://access.redhat.com/documentation/en/red-hat-jboss-developer-studio/"> | ||
%description | ||
</description> | ||
|
||
<copyright> | ||
%copyright | ||
</copyright> | ||
|
||
<license url="%licenseURL"> | ||
%license | ||
</license> | ||
|
||
<plugin id="com.redhat.fabric8analytics.eclipse.core" download-size="0" install-size="0" version="0.0.0"/> | ||
<plugin id="com.redhat.fabric8analytics.eclipse.ui" download-size="0" install-size="0" version="0.0.0"/> | ||
<plugin id="com.redhat.fabric8analytics.eclipse.lsp.core" download-size="0" install-size="0" version="0.0.0"/> | ||
<plugin id="com.redhat.fabric8analytics.eclipse.lsp.ui" download-size="0" install-size="0" version="0.0.0"/> | ||
|
||
</feature> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 2 additions & 0 deletions
2
plugins/com.redhat.fabric8analytics.eclipse.core/plugin.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Bundle-Name=Fabric8Analytics Core Plugin | ||
Bundle-Vendor=JBoss by Red Hat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.