|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <parent> |
| 8 | + <groupId>io.cucumber</groupId> |
| 9 | + <artifactId>cucumber-jvm</artifactId> |
| 10 | + <version>4.3.1-SNAPSHOT</version> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <artifactId>cucumber-deltaspike</artifactId> |
| 14 | + <packaging>jar</packaging> |
| 15 | + <name>Cucumber-JVM: Deltaspike</name> |
| 16 | + |
| 17 | + <properties> |
| 18 | + <deltaspike.version>1.9.0</deltaspike.version> |
| 19 | + <cdi-api.version>2.0.SP1</cdi-api.version> |
| 20 | + <jaxb-api.version>2.3.1</jaxb-api.version> |
| 21 | + |
| 22 | + <weld-se.version>2.4.4.Final</weld-se.version> |
| 23 | + <openejb-core.version>8.0.0-M1</openejb-core.version> |
| 24 | + <owb.version>2.0.10</owb.version> |
| 25 | + </properties> |
| 26 | + |
| 27 | + <dependencies> |
| 28 | + <dependency> |
| 29 | + <groupId>${project.groupId}</groupId> |
| 30 | + <artifactId>cucumber-java</artifactId> |
| 31 | + <version>${project.version}</version> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.apache.deltaspike.cdictrl</groupId> |
| 35 | + <artifactId>deltaspike-cdictrl-api</artifactId> |
| 36 | + <version>${deltaspike.version}</version> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>javax.enterprise</groupId> |
| 40 | + <artifactId>cdi-api</artifactId> |
| 41 | + <version>${cdi-api.version}</version> |
| 42 | + <scope>provided</scope> |
| 43 | + </dependency> |
| 44 | + |
| 45 | + <dependency> |
| 46 | + <groupId>io.cucumber</groupId> |
| 47 | + <artifactId>cucumber-junit</artifactId> |
| 48 | + <scope>test</scope> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>junit</groupId> |
| 52 | + <artifactId>junit</artifactId> |
| 53 | + <scope>test</scope> |
| 54 | + </dependency> |
| 55 | + </dependencies> |
| 56 | + |
| 57 | + <profiles> |
| 58 | + <profile> |
| 59 | + <id>deltaspike-weld</id> |
| 60 | + <activation> |
| 61 | + <activeByDefault>true</activeByDefault> |
| 62 | + </activation> |
| 63 | + |
| 64 | + <dependencies> |
| 65 | + <dependency> |
| 66 | + <groupId>org.apache.deltaspike.cdictrl</groupId> |
| 67 | + <artifactId>deltaspike-cdictrl-weld</artifactId> |
| 68 | + <version>${deltaspike.version}</version> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.jboss.weld.se</groupId> |
| 73 | + <artifactId>weld-se-core</artifactId> |
| 74 | + <version>${weld-se.version}</version> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + </dependencies> |
| 78 | + </profile> |
| 79 | + |
| 80 | + <profile> |
| 81 | + <id>deltaspike-openejb</id> |
| 82 | + |
| 83 | + <dependencies> |
| 84 | + <dependency> |
| 85 | + <groupId>org.apache.deltaspike.cdictrl</groupId> |
| 86 | + <artifactId>deltaspike-cdictrl-openejb</artifactId> |
| 87 | + <version>${deltaspike.version}</version> |
| 88 | + <scope>test</scope> |
| 89 | + </dependency> |
| 90 | + |
| 91 | + <dependency> |
| 92 | + <groupId>org.apache.tomee</groupId> |
| 93 | + <artifactId>openejb-core</artifactId> |
| 94 | + <version>${openejb-core.version}</version> |
| 95 | + <scope>test</scope> |
| 96 | + </dependency> |
| 97 | + <dependency> |
| 98 | + <groupId>javax.xml.bind</groupId> |
| 99 | + <artifactId>jaxb-api</artifactId> |
| 100 | + <version>${jaxb-api.version}</version> |
| 101 | + <scope>test</scope> |
| 102 | + </dependency> |
| 103 | + <dependency> |
| 104 | + <groupId>org.glassfish.jaxb</groupId> |
| 105 | + <artifactId>jaxb-runtime</artifactId> |
| 106 | + <version>${jaxb-api.version}</version> |
| 107 | + </dependency> |
| 108 | + </dependencies> |
| 109 | + </profile> |
| 110 | + |
| 111 | + <profile> |
| 112 | + <id>deltaspike-owb</id> |
| 113 | + |
| 114 | + <dependencies> |
| 115 | + <dependency> |
| 116 | + <groupId>org.apache.deltaspike.cdictrl</groupId> |
| 117 | + <artifactId>deltaspike-cdictrl-owb</artifactId> |
| 118 | + <version>${deltaspike.version}</version> |
| 119 | + <scope>test</scope> |
| 120 | + </dependency> |
| 121 | + |
| 122 | + <dependency> |
| 123 | + <groupId>org.apache.openwebbeans</groupId> |
| 124 | + <artifactId>openwebbeans-impl</artifactId> |
| 125 | + <version>${owb.version}</version> |
| 126 | + <scope>test</scope> |
| 127 | + </dependency> |
| 128 | + <dependency> |
| 129 | + <groupId>javax.annotation</groupId> |
| 130 | + <artifactId>jsr250-api</artifactId> |
| 131 | + <version>1.0</version> |
| 132 | + <scope>test</scope> |
| 133 | + </dependency> |
| 134 | + </dependencies> |
| 135 | + </profile> |
| 136 | + |
| 137 | + </profiles> |
| 138 | + |
| 139 | +</project> |
0 commit comments