flow-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.karamelsoft.flow</groupId>
<artifactId>flow-core</artifactId>
<version>0.2.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.karamelsoft.flow</groupId>
<artifactId>flow</artifactId>
<version>0.2.1</version>
</parent>
<artifactId>flow-core</artifactId>
<packaging>bundle</packaging>
<name>${project.name} :: Core</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>flow-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>com.github.karamelsoft.flow.api*</Import-Package>
<Private-Package>com.github.karamelsoft.flow.core*</Private-Package>
<Export-Package/>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>