You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2008/01/13 13:42:27 UTC

svn commit: r611566 - in /maven/plugins/trunk/maven-patch-plugin/src/site: apt/examples/multiple.apt apt/examples/single.apt apt/faq.apt apt/index.apt apt/usage.apt site.xml

Author: dennisl
Date: Sun Jan 13 04:42:25 2008
New Revision: 611566

URL: http://svn.apache.org/viewvc?rev=611566&view=rev
Log:
o Set EOL style to Native.

Modified:
    maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/multiple.apt   (contents, props changed)
    maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/single.apt   (contents, props changed)
    maven/plugins/trunk/maven-patch-plugin/src/site/apt/faq.apt   (props changed)
    maven/plugins/trunk/maven-patch-plugin/src/site/apt/index.apt   (props changed)
    maven/plugins/trunk/maven-patch-plugin/src/site/apt/usage.apt   (props changed)
    maven/plugins/trunk/maven-patch-plugin/src/site/site.xml   (props changed)

Modified: maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/multiple.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/multiple.apt?rev=611566&r1=611565&r2=611566&view=diff
==============================================================================
--- maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/multiple.apt (original)
+++ maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/multiple.apt Sun Jan 13 04:42:25 2008
@@ -1,84 +1,84 @@
- ------
- Delete Additional Files Not Exposed to Maven
- ------
- John Casey
- Jesse McConnell
- ------
- 22 June 2007
- ------
-
-~~ Licensed to the Apache Software Foundation (ASF) under one
-~~ or more contributor license agreements.  See the NOTICE file
-~~ distributed with this work for additional information
-~~ regarding copyright ownership.  The ASF licenses this file
-~~ to you under the Apache License, Version 2.0 (the
-~~ "License"); you may not use this file except in compliance
-~~ with the License.  You may obtain a copy of the License at
-~~
-~~   http://www.apache.org/licenses/LICENSE-2.0
-~~
-~~ Unless required by applicable law or agreed to in writing,
-~~ software distributed under the License is distributed on an
-~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-~~ KIND, either express or implied.  See the License for the
-~~ specific language governing permissions and limitations
-~~ under the License.
-
-~~ NOTE: For help with the syntax of this file, see:
-~~ http://maven.apache.org/guides/mini/guide-apt-format.html
-
-Patch Multiple Files from Multiple Directories
-
-  The <<<maven-patch-plugin>>> can be configured apply sets of patches from multiple directories.
-  In the example below, the plugin is setup to apply all the patches in a bugfix directory with 
-  optimization (will not reapply the same patch) and also from an enhancements directory.  This 
-  scenario might crop up if you don't have commit access to a projects source yet need to apply 
-  bugfix and enhancement patches.  The two different patch source directories are shown purely as 
-  an example of what can be configured.
-
-+--------
-<build>
-  [...]
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-patch-plugin</artifactId>
-            <version>1.0-SNAPSHOT</version>
-            <configuration>
-               <patchTargetDir>${moduleDirectory}</patchTargetDir>
-               <skipApplication>false</skipApplication>
-            </configuration>
-            <executions>
-               <execution>
-                  <id>bugfix-patches</id>
-                  <configuration>
-                     <patchDirectory>src/main/patches/bugfix</patchDirecto
-ry>
-                     <patchTrackingFile>${project.build.directory}/optimization-
-files/bugfix/patches-applied.txt</patchTrackingFile>
-                     <naturalOrderProcessing>true</naturalOrderProcessing>
-                  </configuration>
-                  <phase>process-sources</phase>
-                  <goals>
-                     <goal>apply</goal>
-                  </goals>
-               </execution>
-               <execution>
-                  <id>enhancement-patches</id>
-                  <configuration>
-                     <patchDirectory>src/main/patches/enhancement</patchDirector
-y>
-                     <patchTrackingFile>${project.build.directory}/optimization-
-files/enhancement/patches-applied.txt</patchTrackingFile>
-                     <naturalOrderProcessing>true</naturalOrderProcessing>
-                  </configuration>
-                  <phase>process-sources</phase>
-                  <goals>
-                     <goal>apply</goal>
-                  </goals>
-               </execution>
-            </executions>
-          </plugin>
-    
-  [...]
-</build>
-+---------
+ ------
+ Delete Additional Files Not Exposed to Maven
+ ------
+ John Casey
+ Jesse McConnell
+ ------
+ 22 June 2007
+ ------
+
+~~ Licensed to the Apache Software Foundation (ASF) under one
+~~ or more contributor license agreements.  See the NOTICE file
+~~ distributed with this work for additional information
+~~ regarding copyright ownership.  The ASF licenses this file
+~~ to you under the Apache License, Version 2.0 (the
+~~ "License"); you may not use this file except in compliance
+~~ with the License.  You may obtain a copy of the License at
+~~
+~~   http://www.apache.org/licenses/LICENSE-2.0
+~~
+~~ Unless required by applicable law or agreed to in writing,
+~~ software distributed under the License is distributed on an
+~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+~~ KIND, either express or implied.  See the License for the
+~~ specific language governing permissions and limitations
+~~ under the License.
+
+~~ NOTE: For help with the syntax of this file, see:
+~~ http://maven.apache.org/guides/mini/guide-apt-format.html
+
+Patch Multiple Files from Multiple Directories
+
+  The <<<maven-patch-plugin>>> can be configured apply sets of patches from multiple directories.
+  In the example below, the plugin is setup to apply all the patches in a bugfix directory with 
+  optimization (will not reapply the same patch) and also from an enhancements directory.  This 
+  scenario might crop up if you don't have commit access to a projects source yet need to apply 
+  bugfix and enhancement patches.  The two different patch source directories are shown purely as 
+  an example of what can be configured.
+
++--------
+<build>
+  [...]
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-patch-plugin</artifactId>
+            <version>1.0-SNAPSHOT</version>
+            <configuration>
+               <patchTargetDir>${moduleDirectory}</patchTargetDir>
+               <skipApplication>false</skipApplication>
+            </configuration>
+            <executions>
+               <execution>
+                  <id>bugfix-patches</id>
+                  <configuration>
+                     <patchDirectory>src/main/patches/bugfix</patchDirecto
+ry>
+                     <patchTrackingFile>${project.build.directory}/optimization-
+files/bugfix/patches-applied.txt</patchTrackingFile>
+                     <naturalOrderProcessing>true</naturalOrderProcessing>
+                  </configuration>
+                  <phase>process-sources</phase>
+                  <goals>
+                     <goal>apply</goal>
+                  </goals>
+               </execution>
+               <execution>
+                  <id>enhancement-patches</id>
+                  <configuration>
+                     <patchDirectory>src/main/patches/enhancement</patchDirector
+y>
+                     <patchTrackingFile>${project.build.directory}/optimization-
+files/enhancement/patches-applied.txt</patchTrackingFile>
+                     <naturalOrderProcessing>true</naturalOrderProcessing>
+                  </configuration>
+                  <phase>process-sources</phase>
+                  <goals>
+                     <goal>apply</goal>
+                  </goals>
+               </execution>
+            </executions>
+          </plugin>
+    
+  [...]
+</build>
++---------

Propchange: maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/multiple.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/single.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/single.apt?rev=611566&r1=611565&r2=611566&view=diff
==============================================================================
--- maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/single.apt (original)
+++ maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/single.apt Sun Jan 13 04:42:25 2008
@@ -1,57 +1,57 @@
- ------
- Delete Additional Files Not Exposed to Maven
- ------
- John Casey
- Jesse McConnell
- ------
- 22 June 2007
- ------
-
-~~ Licensed to the Apache Software Foundation (ASF) under one
-~~ or more contributor license agreements.  See the NOTICE file
-~~ distributed with this work for additional information
-~~ regarding copyright ownership.  The ASF licenses this file
-~~ to you under the Apache License, Version 2.0 (the
-~~ "License"); you may not use this file except in compliance
-~~ with the License.  You may obtain a copy of the License at
-~~
-~~   http://www.apache.org/licenses/LICENSE-2.0
-~~
-~~ Unless required by applicable law or agreed to in writing,
-~~ software distributed under the License is distributed on an
-~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-~~ KIND, either express or implied.  See the License for the
-~~ specific language governing permissions and limitations
-~~ under the License.
-
-~~ NOTE: For help with the syntax of this file, see:
-~~ http://maven.apache.org/guides/mini/guide-apt-format.html
-
-Patch a Single File
-
-  The <<<maven-patch-plugin>>> can be configured to apply a single patch to a file as specified:
-
-+--------
-<build>
-  [...]
-
-      <plugin>
-        <artifactId>maven-patch-plugin</artifactId>
-        <configuration>
-          <patches>
-            <patch>mylittle.patch</patch>
-          </patches>
-        </configuration>
-        <executions>
-          <execution>
-            <id>patch</id>
-            <phase>process-sources</phase>
-            <goals>
-              <goal>apply</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-  [...]
-</build>
-+---------
+ ------
+ Delete Additional Files Not Exposed to Maven
+ ------
+ John Casey
+ Jesse McConnell
+ ------
+ 22 June 2007
+ ------
+
+~~ Licensed to the Apache Software Foundation (ASF) under one
+~~ or more contributor license agreements.  See the NOTICE file
+~~ distributed with this work for additional information
+~~ regarding copyright ownership.  The ASF licenses this file
+~~ to you under the Apache License, Version 2.0 (the
+~~ "License"); you may not use this file except in compliance
+~~ with the License.  You may obtain a copy of the License at
+~~
+~~   http://www.apache.org/licenses/LICENSE-2.0
+~~
+~~ Unless required by applicable law or agreed to in writing,
+~~ software distributed under the License is distributed on an
+~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+~~ KIND, either express or implied.  See the License for the
+~~ specific language governing permissions and limitations
+~~ under the License.
+
+~~ NOTE: For help with the syntax of this file, see:
+~~ http://maven.apache.org/guides/mini/guide-apt-format.html
+
+Patch a Single File
+
+  The <<<maven-patch-plugin>>> can be configured to apply a single patch to a file as specified:
+
++--------
+<build>
+  [...]
+
+      <plugin>
+        <artifactId>maven-patch-plugin</artifactId>
+        <configuration>
+          <patches>
+            <patch>mylittle.patch</patch>
+          </patches>
+        </configuration>
+        <executions>
+          <execution>
+            <id>patch</id>
+            <phase>process-sources</phase>
+            <goals>
+              <goal>apply</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+  [...]
+</build>
++---------

Propchange: maven/plugins/trunk/maven-patch-plugin/src/site/apt/examples/single.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-patch-plugin/src/site/apt/faq.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-patch-plugin/src/site/apt/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-patch-plugin/src/site/apt/usage.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-patch-plugin/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native