Repository: tomee Updated Branches: refs/heads/master 64ed4189e -> 337176e1e
Create mp-metrics-metered example pom.xml file Project: http://git-wip-us.apache.org/repos/asf/tomee/repo Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/4d75a993 Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/4d75a993 Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/4d75a993 Branch: refs/heads/master Commit: 4d75a99314ec595e37534fee9cf66d02564ac2d4 Parents: f032a7f Author: Ferdi <[email protected]> Authored: Fri Nov 23 11:12:50 2018 +0800 Committer: Ferdi <[email protected]> Committed: Fri Nov 23 11:12:50 2018 +0800 ---------------------------------------------------------------------- examples/mp-metrics-metered/pom.xml | 70 ++++++++++++++++++++++++++++++++ examples/pom.xml | 1 + 2 files changed, 71 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tomee/blob/4d75a993/examples/mp-metrics-metered/pom.xml ---------------------------------------------------------------------- diff --git a/examples/mp-metrics-metered/pom.xml b/examples/mp-metrics-metered/pom.xml new file mode 100644 index 0000000..d389b96 --- /dev/null +++ b/examples/mp-metrics-metered/pom.xml @@ -0,0 +1,70 @@ +<?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"> + <parent> + <artifactId>examples</artifactId> + <groupId>org.apache.tomee</groupId> + <version>8.0.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <artifactId>mp-metrics-metered</artifactId> + <packaging>war</packaging> + + + <dependencies> + <dependency> + <groupId>org.apache.tomee</groupId> + <artifactId>javaee-api</artifactId> + <version>8.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.eclipse.microprofile.metrics</groupId> + <artifactId>microprofile-metrics-api</artifactId> + <version>1.0</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.tomee</groupId> + <artifactId>openejb-cxf-rs</artifactId> + <version>${tomee.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.jboss.arquillian.junit</groupId> + <artifactId>arquillian-junit-container</artifactId> + <version>1.0.3.Final</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.tomee</groupId> + <artifactId>arquillian-tomee-remote</artifactId> + <version>${tomee.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.tomee</groupId> + <artifactId>apache-tomee</artifactId> + <version>${tomee.version}</version> + <type>zip</type> + <classifier>microprofile</classifier> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.tomee.maven</groupId> + <artifactId>tomee-maven-plugin</artifactId> + <version>8.0.0-SNAPSHOT</version> + <configuration> + <tomeeClassifier>microprofile</tomeeClassifier> + <context>${artifactId}</context> + </configuration> + </plugin> + </plugins> + </build> +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/tomee/blob/4d75a993/examples/pom.xml ---------------------------------------------------------------------- diff --git a/examples/pom.xml b/examples/pom.xml index 92518e3..741acc3 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -172,6 +172,7 @@ BROKEN, see TOMEE-2140 <module>moviefun-rest</module> <module>resources-jmx-example</module> <module>mp-metrics-counted</module> + <module>mp-metrics-metered</module> </modules> <dependencies>
