kie-soup-maven-support
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.kie.soup</groupId>
<artifactId>kie-soup-maven-support</artifactId>
<version>7.74.1.Final</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">
<parent>
<groupId>org.kie.soup</groupId>
<artifactId>kie-soup-maven-utils</artifactId>
<version>7.74.1.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>kie-soup-maven-support</artifactId>
<packaging>bundle</packaging><!-- bundle = jar + OSGi metadata -->
<name>Maven-support</name>
<properties>
<java.module.name>org.kie.soup.maven.support</java.module.name>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>
org.appformer.maven.support.*
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>