[ https://issues.apache.org/jira/browse/TOMEE-2301?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16707442#comment-16707442 ]
ASF GitHub Bot commented on TOMEE-2301: --------------------------------------- Github user brunobat commented on a diff in the pull request: https://github.com/apache/tomee/pull/223#discussion_r238332043 --- Diff: examples/concurrency-utils/pom.xml --- @@ -0,0 +1,68 @@ +<?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> + + <groupId>org.superbiz</groupId> + <artifactId>concurrency-utils</artifactId> + <version>8.0.0-SNAPSHOT</version> + <packaging>jar</packaging> + <name>OpenEJB :: Examples :: Concurrency utilities example</name> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <javaee-api.version>8.0</javaee-api.version> + <junit.version>4.12</junit.version> + </properties> + + <dependencies> + <dependency> + <groupId>org.apache.tomee</groupId> + <artifactId>javaee-api</artifactId> + <version>${javaee-api.version}</version> + <scope>provided</scope> + </dependency> + <!--Tests--> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>${junit.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.tomee</groupId> + <artifactId>arquillian-tomee-remote</artifactId> + <version>${pom.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.jboss.arquillian.junit</groupId> + <artifactId>arquillian-junit-container</artifactId> + <version>1.4.0.Final</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.jboss.arquillian.container</groupId> + <artifactId>arquillian-container-test-api</artifactId> + <version>1.4.0.Final</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> --- End diff -- Sorry @ivanjunckes what part is not needed? > Concurrency utilities example > ----------------------------- > > Key: TOMEE-2301 > URL: https://issues.apache.org/jira/browse/TOMEE-2301 > Project: TomEE > Issue Type: Improvement > Components: Examples and Documentation > Affects Versions: 8.0.0-Final > Reporter: Bruno Baptista > Priority: Major > Labels: concurrency, examples, pull-request-available > > This is an example to demontrate the Concurrency Utilities introduced in JEE7: > [https://docs.oracle.com/javaee/7/tutorial/concurrency-utilities.htm#top] > It will use CompletableFutures. -- This message was sent by Atlassian JIRA (v7.6.3#76005)