appops-br-cache-service-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.appops</groupId>
<artifactId>appops-br-cache-service-impl</artifactId>
<version>1.0-RC-5</version>
</dependency><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>appops-br-cache-service-impl</artifactId>
<version>1.0-RC-5</version>
<name>appops-br-cache-service</name>
<description>appops black rhino cache impl</description>
<packaging>jar</packaging>
<parent>
<groupId>org.appops</groupId>
<artifactId>appops-br-reactor</artifactId>
<version>1.0-RC-5</version>
</parent>
<properties>
<github.repo.name>appops-br-cache-service</github.repo.name>
</properties>
<dependencies>
<dependency>
<groupId>org.appops</groupId>
<artifactId>appops-br-cache-service-slim</artifactId>
<version>${br.release.version}</version>
</dependency>
<dependency>
<groupId>org.appops</groupId>
<artifactId>appops-br-service-base</artifactId>
<version>${br.release.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.1-jre</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>webapp</directory>
<excludes>
<exclude>WEB-INF/</exclude>
</excludes>
<targetPath>webapp/</targetPath>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.3</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<!-- <exclude>app/**/*</exclude> -->
</excludes>
</filter>
</filters>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Main-Class>org.appops.cache.app.CacheStoreEntryPoint</Main-Class>
<service-name>CacheService</service-name>
</manifestEntries>
</transformer>
</transformers>
<outputFile>target/CacheService.jar</outputFile>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.appops</groupId>
<artifactId>appops-br-maven-plugin</artifactId>
<version>1.0-RC-1</version>
<configuration>
<serviceAnnotation>org.appops.cache.core.CacheService</serviceAnnotation>
<containerType>DOCKER</containerType>
<profileRoot>env-config/default/</profileRoot>
</configuration>
</plugin>
</plugins>
</build>
</project>