Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JBIDE-21654 add aeri support for jboss tools #483

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion usage/plugins/org.jboss.tools.usage/META-INF/MANIFEST.MF
Expand Up @@ -20,7 +20,9 @@ Export-Package: org.jboss.tools.usage.branding,
org.jboss.tools.usage.util.reader
Require-Bundle: org.eclipse.osgi;bundle-version="[3.5.0,4.0.0)",
org.eclipse.core.runtime;bundle-version="[3.5.0,4.0.0)",
org.eclipse.ui;bundle-version="[3.5.0,4.0.0)"
org.eclipse.ui;bundle-version="[3.5.0,4.0.0)",
org.eclipse.epp.logging.aeri.core;bundle-version="1.100.0";resolution:=optional;x-installation:=greedy,
org.eclipse.epp.logging.aeri.ide;bundle-version="1.100.0";resolution:=optional;x-installation:=greedy
Bundle-Activator: org.jboss.tools.usage.internal.JBossToolsUsageActivator
Bundle-Vendor: %bundle-vendor
Bundle-ActivationPolicy: lazy
Expand Down
6 changes: 4 additions & 2 deletions usage/plugins/org.jboss.tools.usage/build.properties
Expand Up @@ -9,7 +9,9 @@ bin.includes = .,\
.classpath,\
.project,\
OSGI-INF/,\
.options
.options,\
icons/
src.includes = about.html,\
pom.xml
pom.xml,\
build.properties
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is it really necessary to add build.properties in the generated jar?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hard to do build in pde without build.properties is it not ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

anyway, thats a seperate issue so removingit from this patch.

source.. = src/
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions usage/plugins/org.jboss.tools.usage/plugin.xml
Expand Up @@ -22,4 +22,30 @@
class="org.jboss.tools.usage.internal.preferences.UsageReportPreferenceInitializer">
</initializer>
</extension>

<extension
point="org.eclipse.epp.logging.aeri.ide.servers">
<server
id="org.jboss.tools"
class="org.eclipse.epp.internal.logging.aeri.ide.server.mars.ServerConnection"
icon16="icons/obj16/jbosstools.png"
icon32="icons/obj32/jbosstools.png"
icon64="icons/obj64/jbosstools.png"
name="JBoss Tools"
description="JBoss Tools wishes to get notified about errors that occur in - or may affect the usability of - JBoss Tools. See &lt;a href=&quot;http://tools.jboss.org/usage/&quot;&gt;JBoss Usage Reporting&lt;/a&gt; For details on privacy and data usage."
>
<link
href="https://www.redhat.com"
rel="provider"
title="Red Hat, Inc.">
</link>
<!-- test that redirects to https://redhat.ctrlflow.com/rest/2.0/community/discovery" -->
<link
href="http://xam.dk/aeri/rest/2.0/community/discovery"
rel="discovery"
title="Discovery URL">
</link>
</server>
</extension>

</plugin>