Author: bentmann
Date: Sat Aug 8 11:30:20 2009
New Revision: 802342
URL: http://svn.apache.org/viewvc?rev=802342&view=rev
Log:
o Improved readability
Modified:
maven/enforcer/trunk/enforcer-api/src/site/apt/index.apt
maven/enforcer/trunk/enforcer-api/src/site/apt/writing-a-custom-rule.apt
Modified: maven/enforcer/trunk/enforcer-api/src/site/apt/index.apt
URL:
http://svn.apache.org/viewvc/maven/enforcer/trunk/enforcer-api/src/site/apt/index.apt?rev=802342&r1=802341&r2=802342&view=diff
==============================================================================
--- maven/enforcer/trunk/enforcer-api/src/site/apt/index.apt (original)
+++ maven/enforcer/trunk/enforcer-api/src/site/apt/index.apt Sat Aug 8
11:30:20 2009
@@ -28,5 +28,5 @@
Custom rules are easy to make with the <<<maven-enforcer-rule-api>>>. These
rules can then be invoked with the
{{{../../plugins/maven-enforcer-plugin/}maven-enforcer-plugin}}.
- See {{{./writing-a-custom-rule.html}here}} for instructions on how to make
your own rule.
+ See {{{./writing-a-custom-rule.html}Writing a Custom Rule}} for instructions
on how to make your own rule.
\ No newline at end of file
Modified:
maven/enforcer/trunk/enforcer-api/src/site/apt/writing-a-custom-rule.apt
URL:
http://svn.apache.org/viewvc/maven/enforcer/trunk/enforcer-api/src/site/apt/writing-a-custom-rule.apt?rev=802342&r1=802341&r2=802342&view=diff
==============================================================================
--- maven/enforcer/trunk/enforcer-api/src/site/apt/writing-a-custom-rule.apt
(original)
+++ maven/enforcer/trunk/enforcer-api/src/site/apt/writing-a-custom-rule.apt
Sat Aug 8 11:30:20 2009
@@ -34,20 +34,24 @@
+---+
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
+
<groupId>custom-rule</groupId>
<artifactId>custom-rule-sample</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
+
<name>My Custom Rule</name>
<description>This is my custom rule.</description>
+
<properties>
<api.version>1.0-beta-1</api.version>
<maven.version>2.0.9</maven.version>
</properties>
- <build>
- </build>
+
<dependencies>
<dependency>
<groupId>org.apache.maven.enforcer</groupId>
@@ -82,10 +86,13 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>3.8.1</version>
+ <version>3.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
+
+ <build>
+ </build>
</project>
+---+