openstack
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.snamp.supervisors</groupId>
<artifactId>openstack</artifactId>
<version>2.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.snamp.supervisors</groupId>
<artifactId>supervisors</artifactId>
<version>2.0.0</version>
</parent>
<artifactId>openstack</artifactId>
<version>2.0.0</version>
<packaging>bundle</packaging>
<name>OpenStack Supervisor</name>
<description>Elasticity Manager for OpenStack</description>
<dependencies>
<dependency>
<groupId>io.snamp</groupId>
<artifactId>framework</artifactId>
<version>2.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<dependency>
<groupId>org.pacesys</groupId>
<artifactId>openstack4j-core</artifactId>
<version>3.0.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>io.snamp.supervisors</groupId>
<artifactId>default</artifactId>
<version>2.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
</dependency>
<dependency>
<groupId>io.snamp</groupId>
<artifactId>json-helpers</artifactId>
<version>2.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.snamp.osgi</groupId>
<artifactId>stringtemplate4</artifactId>
<version>4.0.8</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>snamp-${project.artifactId}-supervisor</Bundle-SymbolicName>
<Bundle-Activator>com.bytex.snamp.supervision.openstack.OpenStackSupervisorActivator</Bundle-Activator>
<Provide-Capability>com.bytex.snamp.supervisor; type=openstack</Provide-Capability>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>