resource-manager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ogema.ref-impl</groupId>
<artifactId>resource-manager</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>ref-impl</artifactId>
<groupId>org.ogema.ref-impl</groupId>
<version>2.2.1</version>
</parent>
<artifactId>resource-manager</artifactId>
<name>OGEMA ref-impl :: resource-manager</name>
<packaging>bundle</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<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.ogema.persistence.impl.mem.Activator</Bundle-Activator>
<Export-Package>
org.ogema.resourcemanager.impl,
org.ogema.persistence.impl.faketree
</Export-Package>
<Import-Package><!-- asm really optional? -->
org.objectweb.*;resolution:=optional;version="[5,7)",
com.fasterxml.jackson.annotation;resolution:=optional,
com.google.common.cache;version="[${guava.version.min},${guava.version.max})",
com.google.common.collect;version="[${guava.version.min},${guava.version.max})",
*</Import-Package>
<DynamicImport-Package>*</DynamicImport-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.6.201602180812</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>org.ogema.core</groupId>
<artifactId>api</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
</dependency>
<dependency>
<groupId>org.ogema.ref-impl</groupId>
<artifactId>internal-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
</dependency>
<dependency>
<groupId>org.ogema.ref-impl</groupId>
<artifactId>util</artifactId>
</dependency>
<dependency>
<groupId>org.ogema.tools</groupId>
<artifactId>memory-timeseries</artifactId>
</dependency>
<dependency>
<groupId>org.ogema.tools</groupId>
<artifactId>resource-utils</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-all</artifactId>
<version>5.0.3</version>
</dependency>
<!-- Test-only dependencies -->
<dependency>
<groupId>org.ogema.ref-impl</groupId>
<artifactId>ogema-exam-base</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ogema.ref-impl</groupId>
<artifactId>persistence</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ogema.ref-impl</groupId>
<artifactId>security</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
</project>