You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2014/06/09 12:39:54 UTC

git commit: [CXF-5475] Not checking applicationPath as an output file name candidate

Repository: cxf
Updated Branches:
  refs/heads/master 266b0d6d9 -> a2616506a


[CXF-5475] Not checking applicationPath as an output file name candidate


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/a2616506
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/a2616506
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/a2616506

Branch: refs/heads/master
Commit: a2616506a4c6c879a5a0b5e81cbf15eda0b2b71b
Parents: 266b0d6
Author: Sergey Beryozkin <sb...@talend.com>
Authored: Mon Jun 9 11:39:41 2014 +0100
Committer: Sergey Beryozkin <sb...@talend.com>
Committed: Mon Jun 9 11:39:41 2014 +0100

----------------------------------------------------------------------
 .../java/org/apache/cxf/maven_plugin/javatowadl/Java2WADLMojo.java | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/a2616506/maven-plugins/java2wadl-plugin/src/main/java/org/apache/cxf/maven_plugin/javatowadl/Java2WADLMojo.java
----------------------------------------------------------------------
diff --git a/maven-plugins/java2wadl-plugin/src/main/java/org/apache/cxf/maven_plugin/javatowadl/Java2WADLMojo.java b/maven-plugins/java2wadl-plugin/src/main/java/org/apache/cxf/maven_plugin/javatowadl/Java2WADLMojo.java
index b525e82..f2881bd 100644
--- a/maven-plugins/java2wadl-plugin/src/main/java/org/apache/cxf/maven_plugin/javatowadl/Java2WADLMojo.java
+++ b/maven-plugins/java2wadl-plugin/src/main/java/org/apache/cxf/maven_plugin/javatowadl/Java2WADLMojo.java
@@ -215,8 +215,6 @@ public class Java2WADLMojo extends AbstractMojo {
             String name = null;
             if (outputFileName != null) {
                 name = outputFileName;
-            } else if (applicationTitle != null) {
-                name = applicationTitle.replaceAll(" ", "");    
             } else if (classResourceNames.size() == 1) {
                 String className = classResourceNames.get(0);
                 int i = className.lastIndexOf('.');