Repository: cxf-fediz Updated Branches: refs/heads/1.2.x-fixes 14a86f7ba -> 40a98e14c
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/40a98e14 Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/40a98e14 Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/40a98e14 Branch: refs/heads/1.2.x-fixes Commit: 40a98e14c1c03543ea59e38587d125983ba6a222 Parents: 14a86f7 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 17:45:31 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/40a98e14/examples/wsclientWebapp/webservice/common/pom.xml ---------------------------------------------------------------------- diff --git a/examples/wsclientWebapp/webservice/common/pom.xml b/examples/wsclientWebapp/webservice/common/pom.xml index 3859ff9..4734694 100644 --- a/examples/wsclientWebapp/webservice/common/pom.xml +++ b/examples/wsclientWebapp/webservice/common/pom.xml @@ -44,6 +44,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/40a98e14/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 3b7f8f3..a867d86 100644 --- a/pom.xml +++ b/pom.xml @@ -637,6 +637,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>
