datalog-resadmin-v2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ogema.tools</groupId> <artifactId>datalog-resadmin-v2</artifactId> <version>2.2.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>widget-apps</artifactId> <groupId>org.ogema.widgets</groupId> <version>2.2.1</version> </parent> <artifactId>datalog-resadmin-v2</artifactId> <groupId>org.ogema.tools</groupId> <name>Resource Backup+Cleaner</name> <description>Backup and Clean-up for resource administration tool</description> <packaging>bundle</packaging> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Bundle-Activator>org.smartrplace.internal.resadmin.ResAdminApp</Bundle-Activator> <Import-Package> org.apache.felix.service.command;resolution:=optional;version="[${felix.service.command.version.min},${felix.service.command.version.max})", *</Import-Package> <DynamicImport-Package>*</DynamicImport-Package><!-- FIXME required? --> </instructions> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>6.0.0</version> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.cmpn</artifactId> <version>6.0.0</version> </dependency> <dependency> <groupId>org.ogema.core</groupId> <artifactId>api</artifactId> </dependency> <dependency> <groupId>org.ogema.core</groupId> <artifactId>models</artifactId> </dependency> <dependency> <groupId>org.ogema.widgets</groupId> <artifactId>util-extended</artifactId> </dependency> <dependency> <groupId>org.ogema.widgets</groupId> <artifactId>widget-experimental</artifactId> </dependency> <dependency> <groupId>org.ogema.widgets</groupId> <artifactId>ogema-js-bundle</artifactId> </dependency> <dependency> <groupId>org.ogema.widgets</groupId> <artifactId>widget-collection</artifactId> </dependency> <dependency> <groupId>org.ogema.widgets</groupId> <artifactId>widget-exam-base</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.framework</artifactId> <version>5.6.10</version> <scope>test</scope> </dependency> </dependencies> </project>