Author: richard.opalka(a)jboss.com
Date: 2010-05-11 10:01:17 -0400 (Tue, 11 May 2010)
New Revision: 12205
Modified:
stack/native/trunk/modules/core/pom.xml
Log:
fixing endorsing for modules/core compilation
Modified: stack/native/trunk/modules/core/pom.xml
===================================================================
--- stack/native/trunk/modules/core/pom.xml 2010-05-11 13:59:04 UTC (rev 12204)
+++ stack/native/trunk/modules/core/pom.xml 2010-05-11 14:01:17 UTC (rev 12205)
@@ -170,12 +170,32 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<showDeprecation>false</showDeprecation>
+ <compilerArguments>
+ <endorseddirs>${project.build.directory}/endorsed</endorseddirs>
+ </compilerArguments>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>javax.xml.ws</groupId>
+ <artifactId>jaxws-api</artifactId>
+ <type>jar</type>
+ <overWrite>true</overWrite>
+
<outputDirectory>${project.build.directory}/endorsed</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ <execution>
<id>copy-dependencies</id>
<goals>
<goal>unpack</goal>