Show
hide
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>msf4j-service</artifactId>
<groupId>org.wso2.msf4j</groupId>
<version>2.6.2</version>
<relativePath>../../../poms/msf4j-service/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.wso2.msf4j.samples</groupId>
<artifactId>fatjar-interceptor-service</artifactId>
<name>Sample: Fat Jar Interceptor Service</name>
<build>
<plugins>
<plugin>
<groupId>org.skife.maven</groupId>
<artifactId>really-executable-jar-maven-plugin</artifactId>
<version>${maven.reallyexecutablejarplugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>really-executable-jar</goal>
</goals>
</execution>
</executions>
<configuration>
<programFile>fatjarinterceptor</programFile>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<interceptor-common.version>2.6.2</interceptor-common.version>
<microservice.mainClass>org.wso2.msf4j.samples.fatjarinterceptorservice.Application</microservice.mainClass>
</properties>
</project>
|