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

open bnd.reporter for external use #5394

Merged
merged 1 commit into from Oct 14, 2022
Merged
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
12 changes: 9 additions & 3 deletions biz.aQute.bnd.reporter/bnd.bnd
Expand Up @@ -28,12 +28,18 @@ jtwig.version: 5.86.1.RELEASE
${junit}

Export-Package: \
biz.aQute.bnd.reporter.service.resource.converter,\
biz.aQute.bnd.reporter.codesnippet,\
bjhargrave marked this conversation as resolved.
Show resolved Hide resolved
biz.aQute.bnd.reporter.codesnippet.dto,\
biz.aQute.bnd.reporter.codesnippet.geneimport,\
biz.aQute.bnd.reporter.component.dto,\
biz.aQute.bnd.reporter.exporter,\
biz.aQute.bnd.reporter.generator,\
biz.aQute.bnd.reporter.gogo.dto,\
biz.aQute.bnd.reporter.manifest.dto,\
biz.aQute.bnd.reporter.codesnippet,\
biz.aQute.bnd.reporter.codesnippet.dto
biz.aQute.bnd.reporter.maven.dto,\
biz.aQute.bnd.reporter.plugins.entries.bundle,\
biz.aQute.bnd.reporter.plugins.entries.bundle,\
biz.aQute.bnd.reporter.service.resource.converter

-conditionalpackage: \
aQute.lib.*,\
Expand Down
@@ -0,0 +1,2 @@
@org.osgi.annotation.versioning.Version("1.0.0")
package biz.aQute.bnd.reporter.component.dto;
@@ -0,0 +1,2 @@
@org.osgi.annotation.versioning.Version("1.0.0")
package biz.aQute.bnd.reporter.gogo.dto;
@@ -0,0 +1,2 @@
@org.osgi.annotation.versioning.Version("1.0.0")
package biz.aQute.bnd.reporter.maven.dto;
Expand Up @@ -81,7 +81,7 @@ public ComponentsPlugin() {
}

@Override
public Object extract(final Jar jar, final Locale locale) throws Exception {
public List<ComponentDescriptionDTO> extract(final Jar jar, final Locale locale) throws Exception {
Objects.requireNonNull(jar, "jar");
Objects.requireNonNull(locale, "locale");

Expand Down
Expand Up @@ -31,7 +31,7 @@ public MavenCoordinatePlugin() {
}

@Override
public Object extract(final Jar jar, final Locale locale) {
public MavenCoordinatesDTO extract(final Jar jar, final Locale locale) {
Objects.requireNonNull(jar, "jar");
Objects.requireNonNull(locale, "locale");

Expand Down
Expand Up @@ -74,7 +74,7 @@ public MetatypesPlugin() {
}

@Override
public Object extract(final Jar jar, final Locale locale) throws Exception {
public List<ObjectClassDefinitionDTO> extract(final Jar jar, final Locale locale) throws Exception {
Objects.requireNonNull(jar, "jar");
Objects.requireNonNull(locale, "locale");

Expand Down
@@ -0,0 +1,2 @@
@org.osgi.annotation.versioning.Version("1.0.0")
package biz.aQute.bnd.reporter.plugins.entries.bundle;