|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | + |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <parent> |
| 8 | + <groupId>org.jboss</groupId> |
| 9 | + <artifactId>jboss-parent</artifactId> |
| 10 | + <version>25</version> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <groupId>org.jboss.ce.testsuite</groupId> |
| 14 | + <artifactId>openjdk-arq-testsuite</artifactId> |
| 15 | + <packaging>jar</packaging> |
| 16 | + <name>OpenJDK 1.8 testsuite</name> |
| 17 | + <version>1.0-SNAPSHOT</version> |
| 18 | + <description>Arquillian OpenJDK 1.8 testsuite</description> |
| 19 | + |
| 20 | + <properties> |
| 21 | + <version.arquillian>1.4.0.Final</version.arquillian> |
| 22 | + <version.arquillian.cube>1.16.0</version.arquillian.cube> |
| 23 | + <version.json-simple>1.1.1</version.json-simple> |
| 24 | + <version.junit>4.12</version.junit> |
| 25 | + <version.org.jboss.as.arquillian.container>7.2.0.Final</version.org.jboss.as.arquillian.container> |
| 26 | + <version.ce-arq>1.3.0.Final</version.ce-arq> |
| 27 | + |
| 28 | + <image>registry.access.redhat.com/redhat-openjdk-18/openjdk18-openshift:1.4</image> |
| 29 | + <image.stream.version>1.4</image.stream.version> |
| 30 | + <image.stream.name>redhat-openjdk18-openshift</image.stream.name> |
| 31 | + </properties> |
| 32 | + |
| 33 | + <dependencyManagement> |
| 34 | + <dependencies> |
| 35 | + <dependency> |
| 36 | + <groupId>org.jboss.arquillian</groupId> |
| 37 | + <artifactId>arquillian-bom</artifactId> |
| 38 | + <version>${version.arquillian}</version> |
| 39 | + <type>pom</type> |
| 40 | + <scope>import</scope> |
| 41 | + </dependency> |
| 42 | + |
| 43 | + <dependency> |
| 44 | + <groupId>org.arquillian.cube</groupId> |
| 45 | + <artifactId>arquillian-cube-bom</artifactId> |
| 46 | + <version>${version.arquillian.cube}</version> |
| 47 | + <scope>import</scope> |
| 48 | + <type>pom</type> |
| 49 | + </dependency> |
| 50 | + </dependencies> |
| 51 | + </dependencyManagement> |
| 52 | + |
| 53 | + <dependencies> |
| 54 | + |
| 55 | + <dependency> |
| 56 | + <groupId>com.googlecode.json-simple</groupId> |
| 57 | + <artifactId>json-simple</artifactId> |
| 58 | + <version>${version.json-simple}</version> |
| 59 | + </dependency> |
| 60 | + |
| 61 | + <dependency> |
| 62 | + <groupId>org.jboss.arquillian.container</groupId> |
| 63 | + <artifactId>arquillian-ce-httpclient</artifactId> |
| 64 | + <version>${version.ce-arq}</version> |
| 65 | + </dependency> |
| 66 | + |
| 67 | + <dependency> |
| 68 | + <groupId>org.jboss.arquillian.container</groupId> |
| 69 | + <artifactId>arquillian-ce-shrinkwrap</artifactId> |
| 70 | + <version>${version.ce-arq}</version> |
| 71 | + </dependency> |
| 72 | + |
| 73 | + <dependency> |
| 74 | + <groupId>org.arquillian.cube</groupId> |
| 75 | + <artifactId>arquillian-cube-openshift</artifactId> |
| 76 | + <version>${version.arquillian.cube}</version> |
| 77 | + <scope>test</scope> |
| 78 | + </dependency> |
| 79 | + |
| 80 | + <dependency> |
| 81 | + <groupId>org.jboss.arquillian.junit</groupId> |
| 82 | + <artifactId>arquillian-junit-container</artifactId> |
| 83 | + <version>${version.arquillian}</version> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
| 86 | + |
| 87 | + <dependency> |
| 88 | + <groupId>org.jboss.arquillian.protocol</groupId> |
| 89 | + <artifactId>arquillian-protocol-jmx</artifactId> |
| 90 | + <version>${version.arquillian}</version> |
| 91 | + <scope>test</scope> |
| 92 | + </dependency> |
| 93 | + |
| 94 | + <dependency> |
| 95 | + <groupId>org.jboss.as</groupId> |
| 96 | + <artifactId>jboss-as-arquillian-container-remote</artifactId> |
| 97 | + <version>${version.org.jboss.as.arquillian.container}</version> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
| 100 | + |
| 101 | + <dependency> |
| 102 | + <groupId>junit</groupId> |
| 103 | + <artifactId>junit</artifactId> |
| 104 | + <version>${version.junit}</version> |
| 105 | + <scope>test</scope> |
| 106 | + </dependency> |
| 107 | + |
| 108 | + </dependencies> |
| 109 | + |
| 110 | + <build> |
| 111 | + <plugins> |
| 112 | + <plugin> |
| 113 | + <groupId>org.apache.maven.plugins</groupId> |
| 114 | + <artifactId>maven-dependency-plugin</artifactId> |
| 115 | + <executions> |
| 116 | + <execution> |
| 117 | + <id>unpack-dependencies</id> |
| 118 | + <phase>process-test-classes</phase> |
| 119 | + <goals> |
| 120 | + <goal>unpack-dependencies</goal> |
| 121 | + </goals> |
| 122 | + <configuration> |
| 123 | + <includeGroupIds>org.jboss</includeGroupIds> |
| 124 | + <includeTypes>test-jar</includeTypes> |
| 125 | + <includeScope>test</includeScope> |
| 126 | + <outputDirectory>${project.build.directory}/test-classes</outputDirectory> |
| 127 | + <overWriteReleases>false</overWriteReleases> |
| 128 | + <overWriteSnapshots>true</overWriteSnapshots> |
| 129 | + </configuration> |
| 130 | + </execution> |
| 131 | + </executions> |
| 132 | + </plugin> |
| 133 | + <plugin> |
| 134 | + <groupId>org.apache.maven.plugins</groupId> |
| 135 | + <artifactId>maven-surefire-plugin</artifactId> |
| 136 | + <configuration> |
| 137 | + <runOrder>alphabetical</runOrder> |
| 138 | + <redirectTestOutputToFile>true</redirectTestOutputToFile> |
| 139 | + <trimStackTrace>false</trimStackTrace> |
| 140 | + <forkCount>4</forkCount> |
| 141 | + <reuseForks>false</reuseForks> |
| 142 | + <includes> |
| 143 | + <include>org/jboss/**/*Test.java</include> |
| 144 | + </includes> |
| 145 | + <systemPropertyVariables> |
| 146 | + <!-- the property below ere needed to run the All in One tests, if it is not set then it |
| 147 | + will be default to cloudapps.example.com, then make sure your openshift instance can resolve this |
| 148 | + domain internally --> |
| 149 | + <route.suffix>cloudapps.example.com</route.suffix> |
| 150 | + <!-- end --> |
| 151 | + <sun.net.spi.nameservice.provider.1>dns,ArquillianCubeNameService</sun.net.spi.nameservice.provider.1> |
| 152 | + <sun.net.spi.nameservice.provider.2>default</sun.net.spi.nameservice.provider.2> |
| 153 | + <kubernetes.master>${kubernetes.master}</kubernetes.master> |
| 154 | + <kubernetes.auth.token>${kubernetes.auth.token}</kubernetes.auth.token> |
| 155 | + <arq.extension.openshift.routerHost>${router.hostIP}</arq.extension.openshift.routerHost> |
| 156 | + <image.stream.image>${image}</image.stream.image> |
| 157 | + <image.stream.name>${image.stream.name}</image.stream.name> |
| 158 | + <image.stream.version>${image.stream.version}</image.stream.version> |
| 159 | + <template.repository>jboss-openshift</template.repository> |
| 160 | + <template.branch>master</template.branch> |
| 161 | + <!-- URL to the OpenShift image streams that are officially added to OCP. These image streams are added to every test project run on OpenShift --> |
| 162 | + <openshift.imageStreams>https://raw.githubusercontent.com/openshift/origin/v3.9.0/examples/image-streams/image-streams-rhel7.json</openshift.imageStreams> |
| 163 | + </systemPropertyVariables> |
| 164 | + </configuration> |
| 165 | + </plugin> |
| 166 | + </plugins> |
| 167 | + </build> |
| 168 | +</project> |
0 commit comments