config-store-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.stargate.config-store</groupId>
<artifactId>config-store-api</artifactId>
<version>2.1.0-BETA-38</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 -->
<parent>
<artifactId>stargate</artifactId>
<groupId>io.stargate</groupId>
<version>2.1.0-BETA-38</version>
</parent>
<!-- Artifact props -->
<groupId>io.stargate.config-store</groupId>
<artifactId>config-store-api</artifactId>
<name>Stargate - Coordinator - Config store API</name>
<dependencies>
<!-- 3rd party dependencies -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<unpackBundle>true</unpackBundle>
<instructions>
<Bundle-Name>Config-Store-API</Bundle-Name>
<Bundle-Description>API for Config Store</Bundle-Description>
<Bundle-SymbolicName>io.stargate.config.store.api</Bundle-SymbolicName>
<Import-Package>org.osgi.framework</Import-Package>
<Export-Package>io.stargate.config.store.api</Export-Package>
<Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
<outputDirectory>${project.basedir}/../stargate-lib</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
</project>