Skip to content

revapi/osgi-revapi-extension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OSGi Revapi Extension

Build Status

This library can be used to teach Revapi understand the OSGi bundle definitions.

It understands the Export-Package directive in jar files' manifests and will automatically exclude all elements that are not exported from analysis.

Usage

With Revapi Maven plugin:

<build>
  <plugins>
    <plugin>
      <groupId>org.revapi</groupId>
      <artifactId>revapi-maven-plugin</artifactId>
      <version>...</version>
      <dependencies>
        <dependency>
          <groupId>org.revapi</groupId>
          <artifactId>revapi-java</artifactId>
          <version>...</version>
        </dependency>
        <dependency>
          <groupId>org.revapi</groupId>
          <artifactId>osgi-revapi-extension</artifactId>
          <version>...</version>
        </dependency>
      </dependencies>
      ...

For more information on how to use Revapi, see https://revapi.org and https://github.com/revapi/revapi.