fluid-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.fluidbpm</groupId> <artifactId>fluid-api</artifactId> <version>1.12</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--> <parent> <groupId>com.fluidbpm</groupId> <artifactId>fluid-root</artifactId> <version>1.12</version> <relativePath>../pom.xml</relativePath> </parent> <!--Fluid API--> <artifactId>fluid-api</artifactId> <packaging>jar</packaging> <name>Fluid API</name> <description>Used for the * Custom Program Step, * Custom Actions, * Scheduled Actions and * Fluid API in the Fluid BPM and Content Management system.</description> <url>https://github.com/Koekiebox-PTY-LTD/Fluid</url> <licenses> <license> <name>GNU GENERAL PUBLIC LICENSE, Version 3</name> <url>https://github.com/Koekiebox-PTY-LTD/Fluid/blob/develop/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Jason Bruwer</name> <email>jason@koekiebox.com</email> <organization>Koekiebox</organization> </developer> </developers> <scm> <connection>scm:git:git@github.com:Koekiebox-PTY-LTD/Fluid.git</connection> <developerConnection>scm:git:git@github.com:Koekiebox-PTY-LTD/Fluid.git</developerConnection> <url>git@github.com:Koekiebox-PTY-LTD/Fluid.git</url> </scm> <!--Dependencies--> <dependencies> <!--JSON Library--> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <scope>compile</scope> </dependency> <!-- Redis - https://mvnrepository.com/artifact/redis.clients/jedis --> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <scope>provided</scope> </dependency> <!--Google--> <!--XMemcachedClient--> <dependency> <groupId>com.googlecode.xmemcached</groupId> <artifactId>xmemcached</artifactId> <scope>provided</scope> </dependency> <!--Guava--> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>provided</scope> </dependency> <!--ElasticSearch--> <!-- https://mvnrepository.com/artifact/org.elasticsearch.client/elasticsearch-rest-high-level-client --> <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-high-level-client</artifactId> <version>${version.elasticsearch}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.0</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.12.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/javax.json/javax.json-api --> <dependency> <groupId>javax.json.bind</groupId> <artifactId>javax.json.bind-api</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <!--Maven GPG Sign Plugin--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!--Compiler Plugin--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${version.plugin.compiler}</version> <configuration> <source>${version.jdk.compile}</source> <target>${version.jdk.compile}</target> <compilerArgs> <!--arg>add-modules</arg> <arg>java.xml.bind</arg--> </compilerArgs> </configuration> </plugin> <!--First the 'git describe'--> <plugin> <groupId>com.koekiebox</groupId> <artifactId>git-maven-plugin</artifactId> <version>${version.plugin.koekiebox.git-maven}</version> <executions> <execution> <goals> <goal>git_describe</goal> </goals> </execution> </executions> <configuration> <!--Property that will be set during initialization--> <makeUseOfJavaFile>true</makeUseOfJavaFile> <classPathToJavaFile>com.fluidbpm.GitDescribe</classPathToJavaFile> <constantToChange>GIT_DESCRIBE</constantToChange> </configuration> </plugin> <!--Maven Source Plugin--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${version.plugin.java.source}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!--Maven Javadoc Plugin--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.plugin.java.doc}</version> <configuration> <source>8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>