Author: olamy
Date: Thu Oct 30 22:55:40 2014
New Revision: 1635635
URL: http://svn.apache.org/r1635635
Log:
format
Modified:
tomcat/maven-plugin/trunk/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java
Modified:
tomcat/maven-plugin/trunk/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java
URL:
http://svn.apache.org/viewvc/tomcat/maven-plugin/trunk/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java?rev=1635635&r1=1635634&r2=1635635&view=diff
==============================================================================
---
tomcat/maven-plugin/trunk/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java
(original)
+++
tomcat/maven-plugin/trunk/tomcat7-maven-plugin/src/main/java/org/apache/tomcat/maven/plugin/tomcat7/run/AbstractExecWarMojo.java
Thu Oct 30 22:55:40 2014
@@ -565,8 +565,9 @@ public abstract class AbstractExecWarMoj
{
sourceFileInputStream = new FileInputStream( inputFile );
- // MTOMCAT-286 Need to replace \ with / in includeFileName
- archiveOutputStream.putArchiveEntry( new JarArchiveEntry(
destinationPath + StringUtils.replace( includeFileName, "\\", "/" ) ) );
+ // MTOMCAT-286 Need to replace \ with / in includeFileName
+ archiveOutputStream.putArchiveEntry(
+ new JarArchiveEntry( destinationPath +
StringUtils.replace( includeFileName, "\\", "/" ) ) );
IOUtils.copy( sourceFileInputStream, archiveOutputStream );
archiveOutputStream.closeArchiveEntry();
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]