|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Copyright (c) 2000, 2024, Oracle and/or its affiliates. |
| 4 | +
|
| 5 | + Licensed under the Universal Permissive License v 1.0 as shown at |
| 6 | + https://oss.oracle.com/licenses/upl. |
| 7 | + --> |
| 8 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 9 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 10 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 11 | + <modelVersion>4.0.0</modelVersion> |
| 12 | + |
| 13 | + <parent> |
| 14 | + <groupId>com.oracle.coherence.tests</groupId> |
| 15 | + <artifactId>coherence-functional-tests</artifactId> |
| 16 | + <version>${revision}</version> |
| 17 | + <relativePath>../pom.xml</relativePath> |
| 18 | + </parent> |
| 19 | + |
| 20 | + <artifactId>grpc-proxy-tck-java21</artifactId> |
| 21 | + <name>Coherence gRPC Proxy Java 21+ Tests (TCK)</name> |
| 22 | + |
| 23 | + <properties> |
| 24 | + <module.name>grpc.proxy.java21.testing</module.name> |
| 25 | + <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory> |
| 26 | + <test.server.classpath>${project.build.directory}/server</test.server.classpath> |
| 27 | + |
| 28 | + <java.version>21</java.version> |
| 29 | + <java.version.release>21</java.version.release> |
| 30 | + </properties> |
| 31 | + |
| 32 | + <dependencies> |
| 33 | + <dependency> |
| 34 | + <groupId>${coherence.group.id}</groupId> |
| 35 | + <artifactId>coherence-grpc-proxy</artifactId> |
| 36 | + <version>${project.version}</version> |
| 37 | + <scope>provided</scope> |
| 38 | + <optional>true</optional> |
| 39 | + </dependency> |
| 40 | + |
| 41 | + <dependency> |
| 42 | + <groupId>${coherence.group.id}</groupId> |
| 43 | + <artifactId>coherence-ai</artifactId> |
| 44 | + <version>${project.version}</version> |
| 45 | + </dependency> |
| 46 | + |
| 47 | + <dependency> |
| 48 | + <groupId>${coherence.group.id}.tests</groupId> |
| 49 | + <artifactId>grpc-proxy-tck</artifactId> |
| 50 | + <version>${project.version}</version> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <dependency> |
| 54 | + <groupId>${coherence.group.id}</groupId> |
| 55 | + <artifactId>coherence-json</artifactId> |
| 56 | + <version>${project.version}</version> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + <dependency> |
| 60 | + <groupId>${coherence.group.id}</groupId> |
| 61 | + <artifactId>coherence-testing-support</artifactId> |
| 62 | + <version>${project.version}</version> |
| 63 | + <exclusions> |
| 64 | + <exclusion> |
| 65 | + <groupId>junit</groupId> |
| 66 | + <artifactId>junit</artifactId> |
| 67 | + </exclusion> |
| 68 | + </exclusions> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + <dependency> |
| 72 | + <groupId>org.junit.jupiter</groupId> |
| 73 | + <artifactId>junit-jupiter-api</artifactId> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>org.junit.jupiter</groupId> |
| 77 | + <artifactId>junit-jupiter-params</artifactId> |
| 78 | + </dependency> |
| 79 | + |
| 80 | + <dependency> |
| 81 | + <groupId>io.reactivex.rxjava3</groupId> |
| 82 | + <artifactId>rxjava</artifactId> |
| 83 | + </dependency> |
| 84 | + <dependency> |
| 85 | + <groupId>jakarta.json.bind</groupId> |
| 86 | + <artifactId>jakarta.json.bind-api</artifactId> |
| 87 | + </dependency> |
| 88 | + </dependencies> |
| 89 | + |
| 90 | + <build> |
| 91 | + <plugins> |
| 92 | + <plugin> |
| 93 | + <groupId>com.oracle.coherence.moditect</groupId> |
| 94 | + <artifactId>moditect-maven-plugin</artifactId> |
| 95 | + </plugin> |
| 96 | + |
| 97 | + <plugin> |
| 98 | + <groupId>org.apache.maven.plugins</groupId> |
| 99 | + <artifactId>maven-surefire-plugin</artifactId> |
| 100 | + <configuration> |
| 101 | + <!-- |
| 102 | + Tests are run by other modules |
| 103 | + grpc-proxy-helidon |
| 104 | + grpc-proxy-netty |
| 105 | + --> |
| 106 | + <skip>true</skip> |
| 107 | + <systemProperties> |
| 108 | + <test.server.classpath>${test.server.classpath}</test.server.classpath> |
| 109 | + </systemProperties> |
| 110 | + </configuration> |
| 111 | + </plugin> |
| 112 | + |
| 113 | + <plugin> |
| 114 | + <groupId>org.apache.maven.plugins</groupId> |
| 115 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 116 | + <configuration> |
| 117 | + <!-- |
| 118 | + Tests are run by other modules |
| 119 | + grpc-proxy-helidon |
| 120 | + grpc-proxy-netty |
| 121 | + --> |
| 122 | + <skip>true</skip> |
| 123 | + <systemProperties> |
| 124 | + <test.server.classpath>${test.server.classpath}</test.server.classpath> |
| 125 | + </systemProperties> |
| 126 | + </configuration> |
| 127 | + </plugin> |
| 128 | + |
| 129 | + <plugin> |
| 130 | + <groupId>org.apache.maven.plugins</groupId> |
| 131 | + <artifactId>maven-dependency-plugin</artifactId> |
| 132 | + <executions> |
| 133 | + <execution> |
| 134 | + <id>get-dependencies</id> |
| 135 | + <goals> |
| 136 | + <goal>copy-dependencies</goal> |
| 137 | + </goals> |
| 138 | + <phase>prepare-package</phase> |
| 139 | + <configuration> |
| 140 | + <outputDirectory>${test.server.classpath}</outputDirectory> |
| 141 | + </configuration> |
| 142 | + </execution> |
| 143 | + </executions> |
| 144 | + </plugin> |
| 145 | + </plugins> |
| 146 | + </build> |
| 147 | +</project> |
0 commit comments