Author: thomas.diesler(a)jboss.com
Date: 2008-05-02 08:09:36 -0400 (Fri, 02 May 2008)
New Revision: 6852
Modified:
stack/native/trunk/.classpath
stack/native/trunk/modules/client/pom.xml
stack/native/trunk/modules/core/pom.xml
stack/native/trunk/modules/embedded/pom.xml
stack/native/trunk/modules/jaxrpc/pom.xml
stack/native/trunk/modules/jaxws-ext/pom.xml
stack/native/trunk/modules/jaxws/pom.xml
Log:
Fix jdk1.6 compile
Modified: stack/native/trunk/.classpath
===================================================================
--- stack/native/trunk/.classpath 2008-05-02 10:16:26 UTC (rev 6851)
+++ stack/native/trunk/.classpath 2008-05-02 12:09:36 UTC (rev 6852)
@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
+ <classpathentry kind="src"
path="modules/saaj/src/main/java"/>
<classpathentry kind="src"
path="modules/jaxrpc/src/main/java"/>
- <classpathentry kind="src"
path="modules/testsuite/native-tests/src/test/java"/>
- <classpathentry kind="src"
path="modules/testsuite/framework-tests/src/test/java"/>
- <classpathentry kind="src"
path="modules/core/src/main/java"/>
- <classpathentry kind="src"
path="modules/jaxws-ext/src/main/java"/>
<classpathentry kind="src"
path="modules/jaxws/src/main/java"/>
- <classpathentry kind="src"
path="modules/saaj/src/main/java"/>
+ <classpathentry kind="src"
path="modules/jaxws-ext/src/main/java"/>
+ <classpathentry kind="src"
path="modules/core/src/main/java"/>
+ <classpathentry kind="src"
path="modules/embedded/src/main/java"/>
<classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con"
path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="output" path="target/eclipse-classes"/>
Modified: stack/native/trunk/modules/client/pom.xml
===================================================================
--- stack/native/trunk/modules/client/pom.xml 2008-05-02 10:16:26 UTC (rev 6851)
+++ stack/native/trunk/modules/client/pom.xml 2008-05-02 12:09:36 UTC (rev 6852)
@@ -18,7 +18,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-core</artifactId>
- <version>${project.version}</version>
+ <version>${version}</version>
</dependency>
</dependencies>
Modified: stack/native/trunk/modules/core/pom.xml
===================================================================
--- stack/native/trunk/modules/core/pom.xml 2008-05-02 10:16:26 UTC (rev 6851)
+++ stack/native/trunk/modules/core/pom.xml 2008-05-02 12:09:36 UTC (rev 6852)
@@ -27,12 +27,12 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-jaxws-ext</artifactId>
- <version>${project.version}</version>
+ <version>${version}</version>
</dependency>
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-jaxrpc</artifactId>
- <version>${project.version}</version>
+ <version>${version}</version>
</dependency>
<!-- provided apis -->
Modified: stack/native/trunk/modules/embedded/pom.xml
===================================================================
--- stack/native/trunk/modules/embedded/pom.xml 2008-05-02 10:16:26 UTC (rev 6851)
+++ stack/native/trunk/modules/embedded/pom.xml 2008-05-02 12:09:36 UTC (rev 6852)
@@ -19,7 +19,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-jaxws-ext</artifactId>
- <version>${project.version}</version>
+ <version>${version}</version>
</dependency>
<!-- jboss provided -->
Modified: stack/native/trunk/modules/jaxrpc/pom.xml
===================================================================
--- stack/native/trunk/modules/jaxrpc/pom.xml 2008-05-02 10:16:26 UTC (rev 6851)
+++ stack/native/trunk/modules/jaxrpc/pom.xml 2008-05-02 12:09:36 UTC (rev 6852)
@@ -18,7 +18,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-saaj</artifactId>
- <version>${project.version}</version>
+ <version>${version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Modified: stack/native/trunk/modules/jaxws/pom.xml
===================================================================
--- stack/native/trunk/modules/jaxws/pom.xml 2008-05-02 10:16:26 UTC (rev 6851)
+++ stack/native/trunk/modules/jaxws/pom.xml 2008-05-02 12:09:36 UTC (rev 6852)
@@ -18,7 +18,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-saaj</artifactId>
- <version>${project.version}</version>
+ <version>${version}</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
Modified: stack/native/trunk/modules/jaxws-ext/pom.xml
===================================================================
--- stack/native/trunk/modules/jaxws-ext/pom.xml 2008-05-02 10:16:26 UTC (rev 6851)
+++ stack/native/trunk/modules/jaxws-ext/pom.xml 2008-05-02 12:09:36 UTC (rev 6852)
@@ -18,8 +18,29 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-jaxws</artifactId>
- <version>${project.version}</version>
+ <version>${version}</version>
</dependency>
</dependencies>
+ <!-- Profiles -->
+ <profiles>
+ <profile>
+ <id>jdk16</id>
+ <activation>
+ <jdk>1.6</jdk>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <compilerVersion>1.5</compilerVersion>
+ <fork>true</fork>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
</project>
Show replies by date