coupon-demo-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.kill-bill.billing.plugin.java</groupId>
<artifactId>coupon-demo-plugin</artifactId>
<version>0.0.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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>killbill-oss-parent</artifactId>
<groupId>org.kill-bill.billing</groupId>
<version>0.140.3</version>
<relativePath>../pom.xml/pom.xml</relativePath>
</parent>
<groupId>org.kill-bill.billing.plugin.java</groupId>
<artifactId>coupon-demo-plugin</artifactId>
<version>0.0.1</version>
<packaging>bundle</packaging>
<name>Test Plugin for EntitlementPluginApi</name>
<description>Test Plugin for EntitlementPluginApi</description>
<url>http://github.com/killbill/killbill-coupon-plugin-demo</url>
<scm>
<connection>scm:git:git://github.com/killbill/killbill-coupon-plugin-demo.git</connection>
<developerConnection>scm:git:git@github.com:killbill/killbill-coupon-plugin-demo.git</developerConnection>
<url>http://github.com/killbill/killbill-coupon-plugin-demo/tree/master</url>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/killbill/killbill-coupon-plugin-demo/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>2.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.kill-bill.billing</groupId>
<artifactId>killbill-api</artifactId>
<version>0.50</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>jackson-annotations</artifactId>
<groupId>com.fasterxml.jackson.core</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.kill-bill.billing.plugin</groupId>
<artifactId>killbill-plugin-api-entitlement</artifactId>
<version>0.23</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.kill-bill.billing.plugin</groupId>
<artifactId>killbill-plugin-api-notification</artifactId>
<version>0.23</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<instructions>
<Bundle-Activator>org.killbill.billing.plugin.entitlement.coupon.demo.CouponActivator</Bundle-Activator>
<Export-Package />
<Private-Package>org.killbill.billing.plugin.entitlement.coupon.demo.*</Private-Package>
<Import-Package>javax.xml.transform.dom,javax.xml,javax.xml.bind,javax.xml.transform,javax.xml.validation,javax.xml.transform.stream,org.w3c.dom,*;resolution:=optional</Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>assemble-org.killbill.billing.plugin.entitlement.coupon.demo</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<shadedArtifactAttached>false</shadedArtifactAttached>
<shadedClassifierName>jar-with-dependencies</shadedClassifierName>
<filters>
<filter>
<artifact>${project.groupId}:${project.artifactId}</artifact>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>