ethereum-workitem
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jbpm.contrib</groupId> <artifactId>ethereum-workitem</artifactId> <version>7.74.1.Final</version> </dependency>
<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jbpm.contrib</groupId> <artifactId>workitems</artifactId> <version>7.74.1.Final</version> </parent> <artifactId>ethereum-workitem</artifactId> <name>Ethereum</name> <description>Integrate with the Ethereum Blockchain app platform</description> <organization> <name>jBPM dev team</name> </organization> <dependencies> <dependency> <groupId>org.web3j</groupId> <artifactId>core</artifactId> </dependency> <dependency> <groupId>org.web3j</groupId> <artifactId>abi</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.web3j</groupId> <artifactId>crypto</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.web3j</groupId> <artifactId>tuples</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.web3j</groupId> <artifactId>utils</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.jnr</groupId> <artifactId>jnr-unixsocket</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>io.reactivex</groupId> <artifactId>rxjava</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-document</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-internal</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-workitems-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-workitems-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-test-util</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>template-resources</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <sourceDirectory>${project.build.directory}/generated-sources/java</sourceDirectory> <resources> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <includes> <include>*.png</include> </includes> </resource> <resource> <directory>${project.build.directory}/maven-shared-archive-resources</directory> <filtering>true</filtering> <includes> <include>*.part</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>templating-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>filter-src</id> <goals> <goal>filter-sources</goal> </goals> <configuration> <sourceDirectory>${basedir}/src/main/java</sourceDirectory> <outputDirectory>${project.build.directory}/generated-sources/java</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-remote-resources-plugin</artifactId> <version>1.5</version> <configuration> <resourceBundles> <resourceBundle>${project.groupId}:template-resources:${project.version}</resourceBundle> </resourceBundles> </configuration> <executions> <execution> <goals> <goal>process</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-repository-resources</id> <phase>compile</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <encoding>UTF-8</encoding> <resources> <resource> <directory>target/generated-sources/annotations</directory> <includes> <include>repoindex.html</include> <include>*.wid</include> </includes> <filtering>true</filtering> </resource> </resources> <outputDirectory>target/classes</outputDirectory> </configuration> </execution> </executions> </plugin> <!-- plugin for creation of solidity contracts for tests --> <!-- use mvn web3j:generate-sources to re-generate the contracts in src/test/java --> <plugin> <groupId>org.web3j</groupId> <artifactId>web3j-maven-plugin</artifactId> <version>0.1.4</version> <configuration> <packageName>org.jbpm.process.workitem.ethereum.test.contract</packageName> <sourceDestination>src/test/java</sourceDestination> <nativeJavaType>true</nativeJavaType> <soliditySourceFiles> <directory>src/test/resources</directory> <includes> <include>**/*.sol</include> </includes> </soliditySourceFiles> </configuration> </plugin> </plugins> </build> </project>