|
| 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <parent> |
| 6 | + <groupId>org.jboss.resteasy</groupId> |
| 7 | + <artifactId>resteasy-jaxrs-all</artifactId> |
| 8 | + <version>3.0.8.Final</version> |
| 9 | + <relativePath>../../pom.xml</relativePath> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <artifactId>RESTEASY-1073-WF8</artifactId> |
| 13 | + <packaging>jar</packaging> |
| 14 | + <name>RESTEASY-1073-WF8</name> |
| 15 | + <url>http://maven.apache.org</url> |
| 16 | + |
| 17 | + <properties> |
| 18 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 19 | + <as-version>8.0.0.Final</as-version> |
| 20 | + </properties> |
| 21 | + |
| 22 | + <build> |
| 23 | + <plugins> |
| 24 | + <plugin> |
| 25 | + <groupId>org.apache.maven.plugins</groupId> |
| 26 | + <artifactId>maven-compiler-plugin</artifactId> |
| 27 | + <version>2.3.2</version> |
| 28 | + <configuration> |
| 29 | + <source>1.6</source> |
| 30 | + <target>1.6</target> |
| 31 | + </configuration> |
| 32 | + </plugin> |
| 33 | + <plugin> |
| 34 | + <artifactId>maven-surefire-plugin</artifactId> |
| 35 | + <version>2.12</version> |
| 36 | + </plugin> |
| 37 | + <plugin> |
| 38 | + <artifactId>maven-dependency-plugin</artifactId> |
| 39 | + <executions> |
| 40 | + <execution> |
| 41 | + <id>unpack</id> |
| 42 | + <phase>process-test-classes</phase> |
| 43 | + <goals> |
| 44 | + <goal>unpack</goal> |
| 45 | + </goals> |
| 46 | + <configuration> |
| 47 | + <artifactItems> |
| 48 | + <artifactItem> |
| 49 | + <groupId>org.wildfly</groupId> |
| 50 | + <artifactId>wildfly-dist</artifactId> |
| 51 | + <version>${as-version}</version> |
| 52 | + <type>zip</type> |
| 53 | + <overWrite>false</overWrite> |
| 54 | + <outputDirectory>target</outputDirectory> |
| 55 | + </artifactItem> |
| 56 | + </artifactItems> |
| 57 | + </configuration> |
| 58 | + </execution> |
| 59 | + </executions> |
| 60 | + </plugin> |
| 61 | + <plugin> |
| 62 | + <groupId>org.apache.maven.plugins</groupId> |
| 63 | + <artifactId>maven-antrun-plugin</artifactId> |
| 64 | + <version>1.6</version> |
| 65 | + <executions> |
| 66 | + <execution> |
| 67 | + <id>unpack resteasy</id> |
| 68 | + <phase>process-test-classes</phase> |
| 69 | + <configuration> |
| 70 | + <target> |
| 71 | + <unzip src="../../jboss-modules/target/resteasy-jboss-modules-wf8-${project.version}.zip" |
| 72 | + dest="${project.build.directory}/wildfly-${as-version}/modules/system/layers/base" |
| 73 | + overwrite="true" /> |
| 74 | + </target> |
| 75 | + </configuration> |
| 76 | + <goals> |
| 77 | + <goal>run</goal> |
| 78 | + </goals> |
| 79 | + </execution> |
| 80 | + </executions> |
| 81 | + </plugin> |
| 82 | + |
| 83 | + <plugin> |
| 84 | + <groupId>org.apache.maven.plugins</groupId> |
| 85 | + <artifactId>maven-war-plugin</artifactId> |
| 86 | + <configuration> |
| 87 | + <archive> |
| 88 | + <manifestEntries> |
| 89 | + <Dependencies> |
| 90 | + javax.xml.bind.api |
| 91 | + </Dependencies> |
| 92 | + </manifestEntries> |
| 93 | + </archive> |
| 94 | + </configuration> |
| 95 | + </plugin> |
| 96 | + |
| 97 | + </plugins> |
| 98 | + </build> |
| 99 | + |
| 100 | +<dependencyManagement> |
| 101 | + <dependencies> |
| 102 | + <dependency> |
| 103 | + <groupId>org.jboss.arquillian</groupId> |
| 104 | + <artifactId>arquillian-bom</artifactId> |
| 105 | + <version>1.0.3.Final</version> |
| 106 | + <scope>import</scope> |
| 107 | + <type>pom</type> |
| 108 | + </dependency> |
| 109 | + </dependencies> |
| 110 | +</dependencyManagement> |
| 111 | + |
| 112 | + <dependencies> |
| 113 | + <dependency> |
| 114 | + <groupId>org.jboss.spec</groupId> |
| 115 | + <artifactId>jboss-javaee-6.0</artifactId> |
| 116 | + <version>1.0.0.Final</version> |
| 117 | + <type>pom</type> |
| 118 | + <scope>provided</scope> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>junit</groupId> |
| 122 | + <artifactId>junit</artifactId> |
| 123 | + <version>4.8.1</version> |
| 124 | + <scope>test</scope> |
| 125 | + </dependency> |
| 126 | + <dependency> |
| 127 | + <groupId>org.jboss.arquillian.junit</groupId> |
| 128 | + <artifactId>arquillian-junit-container</artifactId> |
| 129 | + <scope>test</scope> |
| 130 | + </dependency> |
| 131 | + <dependency> |
| 132 | + <groupId>org.wildfly</groupId> |
| 133 | + <artifactId>wildfly-arquillian-container-managed</artifactId> |
| 134 | + <version>8.0.0.Alpha1</version> |
| 135 | + <scope>test</scope> |
| 136 | + </dependency> |
| 137 | + <dependency> |
| 138 | + <groupId>org.jboss.arquillian.protocol</groupId> |
| 139 | + <artifactId>arquillian-protocol-servlet</artifactId> |
| 140 | + <scope>test</scope> |
| 141 | + </dependency> |
| 142 | + <dependency> |
| 143 | + <groupId>org.jboss.resteasy</groupId> |
| 144 | + <artifactId>jaxrs-api</artifactId> |
| 145 | + <version>${project.version}</version> |
| 146 | + </dependency> |
| 147 | + <dependency> |
| 148 | + <groupId>org.jboss.resteasy</groupId> |
| 149 | + <artifactId>resteasy-jaxrs</artifactId> |
| 150 | + <version>${project.version}</version> |
| 151 | + </dependency> |
| 152 | + <dependency> |
| 153 | + <groupId>org.jboss.resteasy</groupId> |
| 154 | + <artifactId>resteasy-validator-provider-11</artifactId> |
| 155 | + <version>${project.version}</version> |
| 156 | + </dependency> |
| 157 | + <dependency> |
| 158 | + <groupId>javax.validation</groupId> |
| 159 | + <artifactId>validation-api</artifactId> |
| 160 | + <version>1.1.0.Final</version> |
| 161 | + </dependency> |
| 162 | + <dependency> |
| 163 | + <groupId>org.hibernate</groupId> |
| 164 | + <artifactId>hibernate-validator</artifactId> |
| 165 | + <version>5.0.1.Final</version> |
| 166 | + </dependency> |
| 167 | + <dependency> |
| 168 | + <groupId>javax.el</groupId> |
| 169 | + <artifactId>javax.el-api</artifactId> |
| 170 | + <version>2.2.4</version> |
| 171 | + </dependency> |
| 172 | + <dependency> |
| 173 | + <groupId>org.glassfish.web</groupId> |
| 174 | + <artifactId>javax.el</artifactId> |
| 175 | + <version>2.2.4</version> |
| 176 | + </dependency> |
| 177 | +<dependency> |
| 178 | + <groupId>org.jboss.spec.javax.xml.bind</groupId> |
| 179 | + <artifactId>jboss-jaxb-api_2.2_spec</artifactId> |
| 180 | + <version>1.0.4.Final</version> |
| 181 | +</dependency> |
| 182 | + <dependency> |
| 183 | + <groupId>org.jboss.resteasy</groupId> |
| 184 | + <artifactId>resteasy-jaxb-provider</artifactId> |
| 185 | + <version>${project.version}</version> |
| 186 | + <scope>test</scope> |
| 187 | + </dependency> |
| 188 | + </dependencies> |
| 189 | +</project> |
0 commit comments