Skip to content

This repository contains samples of modules to create Jahia Actions, Filters, etc... using OSGi

Notifications You must be signed in to change notification settings

GladTek/OSGi-Samples

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OSGi-modules-samples

This repository contains samples of modules to create Jahia Actions, Filters, etc... with OSGi

How to use OSGi annotations in your module

In order for the OSGi annotations to work in your module, you need to make sure that you have this tag <_dsannotations>*</_dsannotations> in the maven-bundle-plugin plugin instructions of your pom.xml:

<plugin>
    <groupId>org.apache.felix</groupId>
    <artifactId>maven-bundle-plugin</artifactId>
    <extensions>true</extensions>
    <configuration>
        <instructions>
            <_dsannotations>*</_dsannotations>
        </instructions>
    </configuration>
</plugin>

About

This repository contains samples of modules to create Jahia Actions, Filters, etc... using OSGi

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 51.1%
  • JavaScript 40.5%
  • Shell 5.5%
  • TypeScript 2.1%
  • Other 0.8%