Repository: cxf-fediz Updated Branches: refs/heads/1.1.x-fixes 50a6247b7 -> 79b7ab0f1
Make sure the source is JDK6 compliant Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/79b7ab0f Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/79b7ab0f Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/79b7ab0f Branch: refs/heads/1.1.x-fixes Commit: 79b7ab0f1eb544ab33173fae1cf8ddc217670fe8 Parents: 50a6247 Author: Colm O hEigeartaigh <[email protected]> Authored: Wed Aug 5 17:45:31 2015 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Wed Aug 5 18:00:23 2015 +0100 ---------------------------------------------------------------------- .../wsclientWebapp/webservice/common/pom.xml | 4 ++ pom.xml | 50 ++++++++++++++++++++ 2 files changed, 54 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/79b7ab0f/examples/wsclientWebapp/webservice/common/pom.xml ---------------------------------------------------------------------- diff --git a/examples/wsclientWebapp/webservice/common/pom.xml b/examples/wsclientWebapp/webservice/common/pom.xml index 4d2b92e..8e41dcf 100644 --- a/examples/wsclientWebapp/webservice/common/pom.xml +++ b/examples/wsclientWebapp/webservice/common/pom.xml @@ -45,6 +45,10 @@ <wsdlOptions> <wsdlOption> <wsdl>${basedir}/src/main/resources/wsdl/hello_world.wsdl</wsdl> + <extraargs> + <extraarg>-frontend</extraarg> + <extraarg>jaxws21</extraarg> + </extraargs> </wsdlOption> </wsdlOptions> </configuration> http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/79b7ab0f/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index d7931cb..63eb044 100644 --- a/pom.xml +++ b/pom.xml @@ -628,6 +628,56 @@ </plugin> </plugins> </pluginManagement> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>animal-sniffer-maven-plugin</artifactId> + <version>1.13</version> + <configuration> + <signature> + <groupId>org.codehaus.mojo.signature</groupId> + <artifactId>java16</artifactId> + <version>1.0</version> + </signature> + </configuration> + <executions> + <execution> + <id>check-java-compatibility</id> + <phase>process-classes</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <executions> + <execution> + <id>enforce-bytecode-version</id> + <goals> + <goal>enforce</goal> + </goals> + <configuration> + <rules> + <enforceBytecodeVersion> + <maxJdkVersion>${jdk.version}</maxJdkVersion> + </enforceBytecodeVersion> + </rules> + <fail>true</fail> + </configuration> + </execution> + </executions> + <dependencies> + <dependency> + <groupId>org.codehaus.mojo</groupId> + <artifactId>extra-enforcer-rules</artifactId> + <version>1.0-beta-3</version> + </dependency> + </dependencies> + </plugin> + </plugins> </build> <profiles>
