flowee-bpms-spin-root
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.finture.spin</groupId> <artifactId>flowee-bpms-spin-root</artifactId> <version>0.7.1</version> </dependency>
<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.finture.bpm</groupId> <artifactId>flowee-bpms-parent</artifactId> <relativePath>../parent/pom.xml</relativePath> <version>0.7.1</version> </parent> <groupId>com.finture.spin</groupId> <artifactId>flowee-bpms-spin-root</artifactId> <name>Flowee BPMS Spin - root</name> <inceptionYear>2014</inceptionYear> <packaging>pom</packaging> <modules> <module>bom</module> <module>core</module> <module>dataformat-json-jackson</module> <module>dataformat-xml-dom</module> <module>dataformat-all</module> </modules> <properties> <json-junit-fluent.version>1.1.6</json-junit-fluent.version> <powermock.version>2.0.9</powermock.version> <mockito.version>3.3.3</mockito.version> <spin.version.old>7.23.0</spin.version.old> <plugin.version.javadoc>3.3.1</plugin.version.javadoc> <license.includeTransitiveDependencies>false</license.includeTransitiveDependencies> <additionalparam>-Xdoclint:none</additionalparam> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.finture.bpm</groupId> <artifactId>flowee-bpms-core-internal-dependencies</artifactId> <version>${project.version}</version> <scope>import</scope> <type>pom</type> </dependency> <dependency> <groupId>com.fasterxml.jackson</groupId> <artifactId>jackson-bom</artifactId> <version>${version.jackson}</version> <scope>import</scope> <type>pom</type> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>${powermock.version}</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito2</artifactId> <version>${powermock.version}</version> </dependency> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy-jsr223</artifactId> <version>${version.groovy}</version> </dependency> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy-json</artifactId> <version>${version.groovy}</version> </dependency> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy-xml</artifactId> <version>${version.groovy}</version> </dependency> <dependency> <groupId>org.graalvm.js</groupId> <artifactId>js-scriptengine</artifactId> <version>${version.graal.js}</version> </dependency> <dependency> <groupId>net.javacrumbs.json-unit</groupId> <artifactId>json-unit-fluent</artifactId> <version>${json-junit-fluent.version}</version> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>${version.xml.bind-api}</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>${version.xml.jaxb-impl}</version> </dependency> <dependency> <groupId>net.minidev</groupId> <artifactId>json-smart</artifactId> <version>${version.json-smart}</version> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>${version.json-path}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${plugin.version.javadoc}</version> <configuration combine.children="append"> <doclint>none</doclint> <detectJavaApiLink>false</detectJavaApiLink> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.5.0</version> <configuration> <instructions> <Export-Package>com.finture.spin*</Export-Package> </instructions> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.19</version> <configuration> <acceptPomPackaging>true</acceptPomPackaging> <excludedScopes>test</excludedScopes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>license-header-check</id> <build> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>jdk11</id> <activation> <jdk>[11,)</jdk> </activation> <modules> <module>dataformat-xml-dom-jakarta</module> </modules> </profile> </profiles> </project>