Author: asoldano
Date: 2014-09-11 11:28:10 -0400 (Thu, 11 Sep 2014)
New Revision: 18930
Modified:
projects/plugins/maven/archetypes/jaxws-codefirst/trunk/src/main/resources/META-INF/maven/archetype-metadata.xml
projects/plugins/maven/archetypes/jaxws-codefirst/trunk/src/main/resources/archetype-resources/pom.xml
Log:
[JBWS-3617] Always set project.build.sourceEncoding property in generated project; build
Java 1.7 level sources; use latest jbossws-cxf and jbossws-common-tools snapshots
Modified:
projects/plugins/maven/archetypes/jaxws-codefirst/trunk/src/main/resources/META-INF/maven/archetype-metadata.xml
===================================================================
---
projects/plugins/maven/archetypes/jaxws-codefirst/trunk/src/main/resources/META-INF/maven/archetype-metadata.xml 2014-09-11
15:11:10 UTC (rev 18929)
+++
projects/plugins/maven/archetypes/jaxws-codefirst/trunk/src/main/resources/META-INF/maven/archetype-metadata.xml 2014-09-11
15:28:10 UTC (rev 18930)
@@ -4,7 +4,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<requiredProperties>
<requiredProperty key="jbosswscxf" >
- <defaultValue>4.2.3.Final</defaultValue>
+ <defaultValue>5.0.0-SNAPSHOT</defaultValue>
</requiredProperty>
</requiredProperties>
<fileSets>
Modified:
projects/plugins/maven/archetypes/jaxws-codefirst/trunk/src/main/resources/archetype-resources/pom.xml
===================================================================
---
projects/plugins/maven/archetypes/jaxws-codefirst/trunk/src/main/resources/archetype-resources/pom.xml 2014-09-11
15:11:10 UTC (rev 18929)
+++
projects/plugins/maven/archetypes/jaxws-codefirst/trunk/src/main/resources/archetype-resources/pom.xml 2014-09-11
15:28:10 UTC (rev 18930)
@@ -6,6 +6,9 @@
<artifactId>$artifactId</artifactId>
<version>$version</version>
<packaging>war</packaging>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
<dependencies>
<dependency>
<groupId>org.jboss.spec</groupId>
@@ -69,8 +72,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.4</version>
<configuration>
- <source>1.6</source>
- <target>1.6</target>
+ <source>1.7</source>
+ <target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
@@ -98,7 +101,7 @@
<plugin>
<groupId>org.jboss.ws.plugins</groupId>
<artifactId>maven-jaxws-tools-plugin</artifactId>
- <version>1.1.2.Final</version>
+ <version>1.2.0-SNAPSHOT</version>
<configuration>
<verbose>true</verbose>
</configuration>