Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequireNoRepositories.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequireNoRepositories.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequireNoRepositories.html
Sun Aug 23 19:50:55 2015
@@ -56,35 +56,35 @@
<span class="sourceLineNo">048</span> /**<a name="line.48"></a>
<span class="sourceLineNo">049</span> * Whether to ban non-plugin
repositories. By default they are banned.<a name="line.49"></a>
<span class="sourceLineNo">050</span> * <a name="line.50"></a>
-<span class="sourceLineNo">051</span> * @see {@link
#setBanRepositories(boolean)}<a name="line.51"></a>
+<span class="sourceLineNo">051</span> * @see
#setBanRepositories(boolean)<a name="line.51"></a>
<span class="sourceLineNo">052</span> */<a name="line.52"></a>
<span class="sourceLineNo">053</span> private boolean banRepositories =
true;<a name="line.53"></a>
<span class="sourceLineNo">054</span><a name="line.54"></a>
<span class="sourceLineNo">055</span> /**<a name="line.55"></a>
<span class="sourceLineNo">056</span> * Whether to ban plugin
repositories. By default they are banned.<a name="line.56"></a>
<span class="sourceLineNo">057</span> * <a name="line.57"></a>
-<span class="sourceLineNo">058</span> * @see {@link
#setBanPluginRepositories(boolean)}<a name="line.58"></a>
+<span class="sourceLineNo">058</span> * @see
#setBanPluginRepositories(boolean)<a name="line.58"></a>
<span class="sourceLineNo">059</span> */<a name="line.59"></a>
<span class="sourceLineNo">060</span> private boolean banPluginRepositories
= true;<a name="line.60"></a>
<span class="sourceLineNo">061</span><a name="line.61"></a>
<span class="sourceLineNo">062</span> /**<a name="line.62"></a>
<span class="sourceLineNo">063</span> * Specify explicitly allowed
non-plugin repositories. This is a list of ids.<a name="line.63"></a>
<span class="sourceLineNo">064</span> * <a name="line.64"></a>
-<span class="sourceLineNo">065</span> * @see {@link
#setAllowedRepositories(List)}<a name="line.65"></a>
+<span class="sourceLineNo">065</span> * @see
#setAllowedRepositories(List)<a name="line.65"></a>
<span class="sourceLineNo">066</span> */<a name="line.66"></a>
<span class="sourceLineNo">067</span> private List<String>
allowedRepositories = Collections.emptyList();<a name="line.67"></a>
<span class="sourceLineNo">068</span><a name="line.68"></a>
<span class="sourceLineNo">069</span> /**<a name="line.69"></a>
<span class="sourceLineNo">070</span> * Specify explicitly allowed plugin
repositories. This is a list of ids.<a name="line.70"></a>
<span class="sourceLineNo">071</span> * <a name="line.71"></a>
-<span class="sourceLineNo">072</span> * @see {@link
#setAllowedPluginRepositories(List)}<a name="line.72"></a>
+<span class="sourceLineNo">072</span> * @see
#setAllowedPluginRepositories(List)<a name="line.72"></a>
<span class="sourceLineNo">073</span> */<a name="line.73"></a>
<span class="sourceLineNo">074</span> private List<String>
allowedPluginRepositories = Collections.emptyList();<a name="line.74"></a>
<span class="sourceLineNo">075</span><a name="line.75"></a>
<span class="sourceLineNo">076</span> /**<a name="line.76"></a>
<span class="sourceLineNo">077</span> * Whether to allow repositories
which only resolve snapshots. By default they are banned.<a name="line.77"></a>
<span class="sourceLineNo">078</span> * <a name="line.78"></a>
-<span class="sourceLineNo">079</span> * @see {@link
#setAllowSnapshotRepositories(boolean)}<a name="line.79"></a>
+<span class="sourceLineNo">079</span> * @see
#setAllowSnapshotRepositories(boolean)<a name="line.79"></a>
<span class="sourceLineNo">080</span> */<a name="line.80"></a>
<span class="sourceLineNo">081</span> private boolean
allowSnapshotRepositories = false;<a name="line.81"></a>
<span class="sourceLineNo">082</span><a name="line.82"></a>
@@ -223,7 +223,7 @@
<span class="sourceLineNo">215</span> * @param repos all repositories,
never {@code null}<a name="line.215"></a>
<span class="sourceLineNo">216</span> * @param allowedRepos allowed
repositories, never {@code null}<a name="line.216"></a>
<span class="sourceLineNo">217</span> * @param allowSnapshots <a
name="line.217"></a>
-<span class="sourceLineNo">218</span> * @return<a name="line.218"></a>
+<span class="sourceLineNo">218</span> * @return List of banned
repositoreis.<a name="line.218"></a>
<span class="sourceLineNo">219</span> */<a name="line.219"></a>
<span class="sourceLineNo">220</span> private static List<String>
findBannedRepositories( List<Repository> repos, List<String>
allowedRepos,<a name="line.220"></a>
<span class="sourceLineNo">221</span>
boolean allowSnapshots )<a name="line.221"></a>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequirePluginVersions.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequirePluginVersions.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequirePluginVersions.html
Sun Aug 23 19:50:55 2015
@@ -86,7 +86,7 @@
<span class="sourceLineNo">078</span> * This rule will enforce that all
plugins specified in the poms have a version declared.<a name="line.78"></a>
<span class="sourceLineNo">079</span> *<a name="line.79"></a>
<span class="sourceLineNo">080</span> * @author <a
href="mailto:[email protected]">Brian Fox</a><a name="line.80"></a>
-<span class="sourceLineNo">081</span> * @version $Id:
RequirePluginVersions.java 1634140 2014-10-24 21:23:01Z khmarbaise $<a
name="line.81"></a>
+<span class="sourceLineNo">081</span> * @version $Id:
RequirePluginVersions.java 1697215 2015-08-23 16:27:17Z khmarbaise $<a
name="line.81"></a>
<span class="sourceLineNo">082</span> */<a name="line.82"></a>
<span class="sourceLineNo">083</span>public class RequirePluginVersions<a
name="line.83"></a>
<span class="sourceLineNo">084</span> extends
AbstractNonCacheableEnforcerRule<a name="line.84"></a>
@@ -381,7 +381,7 @@
<span class="sourceLineNo">373</span> * @param uncheckedPlugins<a
name="line.373"></a>
<span class="sourceLineNo">374</span> * @param plugins<a
name="line.374"></a>
<span class="sourceLineNo">375</span> * @throws MojoExecutionException<a
name="line.375"></a>
-<span class="sourceLineNo">376</span> * @return<a name="line.376"></a>
+<span class="sourceLineNo">376</span> * @return The plugins which have
been removed.<a name="line.376"></a>
<span class="sourceLineNo">377</span> */<a name="line.377"></a>
<span class="sourceLineNo">378</span> public Collection<Plugin>
removeUncheckedPlugins( Collection<String> uncheckedPlugins,
Collection<Plugin> plugins )<a name="line.378"></a>
<span class="sourceLineNo">379</span> throws MojoExecutionException<a
name="line.379"></a>
@@ -402,7 +402,7 @@
<span class="sourceLineNo">394</span> * <a name="line.394"></a>
<span class="sourceLineNo">395</span> * @param uncheckedPlugins<a
name="line.395"></a>
<span class="sourceLineNo">396</span> * @param uncheckedPluginsList<a
name="line.396"></a>
-<span class="sourceLineNo">397</span> * @return<a name="line.397"></a>
+<span class="sourceLineNo">397</span> * @return List of unchecked
plugins.<a name="line.397"></a>
<span class="sourceLineNo">398</span> */<a name="line.398"></a>
<span class="sourceLineNo">399</span> // CHECKSTYLE_OFF: LineLength<a
name="line.399"></a>
<span class="sourceLineNo">400</span> public Collection<String>
combineUncheckedPlugins( Collection<String> uncheckedPlugins, String
uncheckedPluginsList )<a name="line.400"></a>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequireReleaseDeps.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequireReleaseDeps.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequireReleaseDeps.html
Sun Aug 23 19:50:55 2015
@@ -45,7 +45,7 @@
<span class="sourceLineNo">037</span> * This rule checks that no snapshots are
included.<a name="line.37"></a>
<span class="sourceLineNo">038</span> *<a name="line.38"></a>
<span class="sourceLineNo">039</span> * @author <a
href="mailto:[email protected]">Brian Fox</a><a name="line.39"></a>
-<span class="sourceLineNo">040</span> * @version $Id: RequireReleaseDeps.java
1634140 2014-10-24 21:23:01Z khmarbaise $<a name="line.40"></a>
+<span class="sourceLineNo">040</span> * @version $Id: RequireReleaseDeps.java
1697215 2015-08-23 16:27:17Z khmarbaise $<a name="line.40"></a>
<span class="sourceLineNo">041</span> */<a name="line.41"></a>
<span class="sourceLineNo">042</span>public class RequireReleaseDeps<a
name="line.42"></a>
<span class="sourceLineNo">043</span> extends AbstractBanDependencies<a
name="line.43"></a>
@@ -133,7 +133,7 @@
<span class="sourceLineNo">125</span><a name="line.125"></a>
<span class="sourceLineNo">126</span> /**<a name="line.126"></a>
<span class="sourceLineNo">127</span> * @param helper<a
name="line.127"></a>
-<span class="sourceLineNo">128</span> * @return<a name="line.128"></a>
+<span class="sourceLineNo">128</span> * @return The evaluated {@link
MavenProject}.<a name="line.128"></a>
<span class="sourceLineNo">129</span> * @throws EnforcerRuleException<a
name="line.129"></a>
<span class="sourceLineNo">130</span> */<a name="line.130"></a>
<span class="sourceLineNo">131</span> private MavenProject getProject(
EnforcerRuleHelper helper )<a name="line.131"></a>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequireReleaseVersion.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequireReleaseVersion.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/apidocs/src-html/org/apache/maven/plugins/enforcer/RequireReleaseVersion.html
Sun Aug 23 19:50:55 2015
@@ -87,7 +87,7 @@
<span class="sourceLineNo">079</span><a name="line.79"></a>
<span class="sourceLineNo">080</span> /**<a name="line.80"></a>
<span class="sourceLineNo">081</span> * @param helper<a name="line.81"></a>
-<span class="sourceLineNo">082</span> * @return<a name="line.82"></a>
+<span class="sourceLineNo">082</span> * @return The evaluated {@link
MavenProject}.<a name="line.82"></a>
<span class="sourceLineNo">083</span> * @throws EnforcerRuleException<a
name="line.83"></a>
<span class="sourceLineNo">084</span> */<a name="line.84"></a>
<span class="sourceLineNo">085</span> private MavenProject getProject(
EnforcerRuleHelper helper )<a name="line.85"></a>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependencies.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependencies.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependencies.html
Sun Aug 23 19:50:55 2015
@@ -70,7 +70,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependency-convergence.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependency-convergence.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependency-convergence.html
Sun Aug 23 19:50:55 2015
@@ -70,7 +70,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -495,7 +495,7 @@
<td>
<table border="0" class="table table-striped">
<tr class="b">
-<td width="25%">1.5-SNAPSHOT</td>
+<td width="25%">1.4.1</td>
<td>
<ol style="list-style-type: lower-alpha">
<li><a class="externalLink"
href="http://maven.apache.org/enforcer/enforcer-rules">org.apache.maven.enforcer:enforcer-rules</a></li>
@@ -508,7 +508,7 @@
<td>
<table border="0" class="table table-striped">
<tr class="b">
-<td width="25%">1.5-SNAPSHOT</td>
+<td width="25%">1.4.1</td>
<td>
<ol style="list-style-type: lower-alpha">
<li><a class="externalLink"
href="http://maven.apache.org/enforcer/maven-enforcer-plugin">org.apache.maven.plugins:maven-enforcer-plugin</a></li>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependency-info.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependency-info.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependency-info.html
Sun Aug 23 19:50:55 2015
@@ -70,7 +70,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -422,31 +422,31 @@
<div class="source"><pre class="prettyprint linenums"><dependency>
<groupId>org.apache.maven.enforcer</groupId>
<artifactId>enforcer</artifactId>
- <version>1.5-SNAPSHOT</version>
+ <version>1.4.1</version>
<type>pom</type>
</dependency></pre></div></div>
<div class="section">
<h3><a name="Apache_Buildr"></a>Apache Buildr</h3><a name="Apache_Buildr"></a>
-<div class="source"><pre class="prettyprint
linenums">'org.apache.maven.enforcer:enforcer:pom:1.5-SNAPSHOT'</pre></div></div>
+<div class="source"><pre class="prettyprint
linenums">'org.apache.maven.enforcer:enforcer:pom:1.4.1'</pre></div></div>
<div class="section">
<h3><a name="Apache_Ant"></a>Apache Ant</h3><a name="Apache_Ant"></a>
-<div class="source"><pre class="prettyprint linenums"><dependency
org="org.apache.maven.enforcer" name="enforcer"
rev="1.5-SNAPSHOT">
+<div class="source"><pre class="prettyprint linenums"><dependency
org="org.apache.maven.enforcer" name="enforcer"
rev="1.4.1">
<artifact name="enforcer" type="pom" />
</dependency></pre></div></div>
<div class="section">
<h3><a name="Groovy_Grape"></a>Groovy Grape</h3><a name="Groovy_Grape"></a>
<div class="source"><pre class="prettyprint linenums">@Grapes(
-@Grab(group='org.apache.maven.enforcer', module='enforcer',
version='1.5-SNAPSHOT')
+@Grab(group='org.apache.maven.enforcer', module='enforcer', version='1.4.1')
)</pre></div></div>
<div class="section">
<h3><a name="Grails"></a>Grails</h3><a name="Grails"></a>
-<div class="source"><pre class="prettyprint linenums">compile
'org.apache.maven.enforcer:enforcer:1.5-SNAPSHOT'</pre></div></div>
+<div class="source"><pre class="prettyprint linenums">compile
'org.apache.maven.enforcer:enforcer:1.4.1'</pre></div></div>
<div class="section">
<h3><a name="Leiningen"></a>Leiningen</h3><a name="Leiningen"></a>
-<div class="source"><pre class="prettyprint
linenums">[org.apache.maven.enforcer/enforcer
"1.5-SNAPSHOT"]</pre></div></div>
+<div class="source"><pre class="prettyprint
linenums">[org.apache.maven.enforcer/enforcer
"1.4.1"]</pre></div></div>
<div class="section">
<h3><a name="SBT"></a>SBT</h3><a name="SBT"></a>
-<div class="source"><pre class="prettyprint linenums">libraryDependencies +=
"org.apache.maven.enforcer" %% "enforcer" %
"1.5-SNAPSHOT"</pre></div></div></div>
+<div class="source"><pre class="prettyprint linenums">libraryDependencies +=
"org.apache.maven.enforcer" %% "enforcer" %
"1.4.1"</pre></div></div></div>
</div>
</div>
</div>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependency-management.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependency-management.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/dependency-management.html
Sun Aug 23 19:50:55 2015
@@ -70,7 +70,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -466,13 +466,13 @@
<tr class="b">
<td>org.apache.maven.enforcer</td>
<td><a class="externalLink"
href="http://maven.apache.org/enforcer/enforcer-api">enforcer-api</a></td>
-<td>1.5-SNAPSHOT</td>
+<td>1.4.1</td>
<td>jar</td>
<td><a class="externalLink"
href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version
2.0</a></td></tr>
<tr class="a">
<td>org.apache.maven.enforcer</td>
<td><a class="externalLink"
href="http://maven.apache.org/enforcer/enforcer-rules">enforcer-rules</a></td>
-<td>1.5-SNAPSHOT</td>
+<td>1.4.1</td>
<td>jar</td>
<td><a class="externalLink"
href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version
2.0</a></td></tr>
<tr class="b">
@@ -524,7 +524,7 @@
<tr class="b">
<td>org.apache.maven.enforcer</td>
<td><a class="externalLink"
href="http://maven.apache.org/enforcer/enforcer-rules">enforcer-rules</a></td>
-<td>1.5-SNAPSHOT</td>
+<td>1.4.1</td>
<td>test-jar</td>
<td><a class="externalLink"
href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version
2.0</a></td></tr>
<tr class="a">
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/distribution-management.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/distribution-management.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/distribution-management.html
Sun Aug 23 19:50:55 2015
@@ -70,7 +70,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/download.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/download.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/download.html
Sun Aug 23 19:50:55 2015
@@ -70,7 +70,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -326,10 +326,10 @@ specific language governing permissions
under the License. -->
<div class="section">
-<h2><a name="Download_Apache_Maven_Enforcer_1.5-SNAPSHOT_Source"></a>Download
Apache Maven Enforcer 1.5-SNAPSHOT Source</h2>
+<h2><a name="Download_Apache_Maven_Enforcer_1.4.1_Source"></a>Download Apache
Maven Enforcer 1.4.1 Source</h2>
-<p>Apache Maven Enforcer 1.5-SNAPSHOT is distributed in source format. Use a
source archive if you intend to build
+<p>Apache Maven Enforcer 1.4.1 is distributed in source format. Use a source
archive if you intend to build
Apache Maven Enforcer yourself. Otherwise, simply use the ready-made
binary artifacts from central repository.</p>
@@ -404,7 +404,7 @@ under the License. -->
<div class="section">
-<h3><a name="Apache_Maven_Enforcer_1.5-SNAPSHOT"></a>Apache Maven Enforcer
1.5-SNAPSHOT</h3>
+<h3><a name="Apache_Maven_Enforcer_1.4.1"></a>Apache Maven Enforcer 1.4.1</h3>
<p>This is the current stable version of Apache Maven Enforcer.</p>
@@ -428,13 +428,13 @@ under the License. -->
<tr class="b">
-<td>Apache Maven Enforcer 1.5-SNAPSHOT (Source zip)</td>
+<td>Apache Maven Enforcer 1.4.1 (Source zip)</td>
-<td><a
href="[preferred]maven/archetype/enforcer-1.5-SNAPSHOT-source-release.zip">maven/archetype/enforcer-1.5-SNAPSHOT-source-release.zip</a></td>
+<td><a
href="[preferred]maven/archetype/enforcer-1.4.1-source-release.zip">maven/archetype/enforcer-1.4.1-source-release.zip</a></td>
-<td><a class="externalLink"
href="http://www.apache.org/dist/maven/archetype/enforcer-1.5-SNAPSHOT-source-release.zip.md5">maven/archetype/enforcer-1.5-SNAPSHOT-source-release.zip.md5</a></td>
+<td><a class="externalLink"
href="http://www.apache.org/dist/maven/archetype/enforcer-1.4.1-source-release.zip.md5">maven/archetype/enforcer-1.4.1-source-release.zip.md5</a></td>
-<td><a class="externalLink"
href="http://www.apache.org/dist/maven/archetype/enforcer-1.5-SNAPSHOT-source-release.zip.asc">maven/archetype/enforcer-1.5-SNAPSHOT-source-release.zip.asc</a></td>
+<td><a class="externalLink"
href="http://www.apache.org/dist/maven/archetype/enforcer-1.4.1-source-release.zip.asc">maven/archetype/enforcer-1.4.1-source-release.zip.asc</a></td>
</tr>
</tbody>
</table>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/allclasses-frame.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/allclasses-frame.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/allclasses-frame.html
Sun Aug 23 19:50:55 2015
@@ -3,7 +3,7 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>All Classes (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>All Classes (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/allclasses-noframe.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/allclasses-noframe.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/allclasses-noframe.html
Sun Aug 23 19:50:55 2015
@@ -3,7 +3,7 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>All Classes (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>All Classes (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/constant-values.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/constant-values.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/constant-values.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Constant Field Values (Apache Maven Enforcer API 1.5-SNAPSHOT
API)</title>
+<title>Constant Field Values (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Constant Field Values (Apache Maven Enforcer
API 1.5-SNAPSHOT API)";
+ parent.document.title="Constant Field Values (Apache Maven Enforcer
API 1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/deprecated-list.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/deprecated-list.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/deprecated-list.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Deprecated List (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>Deprecated List (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Deprecated List (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="Deprecated List (Apache Maven Enforcer API
1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/help-doc.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/help-doc.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/help-doc.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>API Help (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>API Help (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="API Help (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="API Help (Apache Maven Enforcer API 1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/index-all.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/index-all.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/index-all.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Index (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>Index (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Index (Apache Maven Enforcer API 1.5-SNAPSHOT
API)";
+ parent.document.title="Index (Apache Maven Enforcer API 1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/index.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/index.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/index.html
Sun Aug 23 19:50:55 2015
@@ -3,7 +3,7 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Apache Maven Enforcer API 1.5-SNAPSHOT API</title>
+<title>Apache Maven Enforcer API 1.4.1 API</title>
<script type="text/javascript">
targetPage = "" + window.location.search;
if (targetPage != "" && targetPage != "undefined")
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerLevel.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerLevel.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerLevel.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>EnforcerLevel (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>EnforcerLevel (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css"
title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="EnforcerLevel (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="EnforcerLevel (Apache Maven Enforcer API 1.4.1
API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRule.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRule.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRule.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>EnforcerRule (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>EnforcerRule (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css"
title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="EnforcerRule (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="EnforcerRule (Apache Maven Enforcer API 1.4.1
API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRule2.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRule2.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRule2.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>EnforcerRule2 (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>EnforcerRule2 (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css"
title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="EnforcerRule2 (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="EnforcerRule2 (Apache Maven Enforcer API 1.4.1
API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRuleException.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRuleException.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRuleException.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>EnforcerRuleException (Apache Maven Enforcer API 1.5-SNAPSHOT
API)</title>
+<title>EnforcerRuleException (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css"
title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="EnforcerRuleException (Apache Maven Enforcer
API 1.5-SNAPSHOT API)";
+ parent.document.title="EnforcerRuleException (Apache Maven Enforcer
API 1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRuleHelper.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRuleHelper.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/EnforcerRuleHelper.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>EnforcerRuleHelper (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>EnforcerRuleHelper (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css"
title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="EnforcerRuleHelper (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="EnforcerRuleHelper (Apache Maven Enforcer API
1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerLevel.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerLevel.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerLevel.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.maven.enforcer.rule.api.EnforcerLevel (Apache
Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.maven.enforcer.rule.api.EnforcerLevel (Apache
Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css"
href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class
org.apache.maven.enforcer.rule.api.EnforcerLevel (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="Uses of Class
org.apache.maven.enforcer.rule.api.EnforcerLevel (Apache Maven Enforcer API
1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRule.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRule.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRule.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Interface org.apache.maven.enforcer.rule.api.EnforcerRule
(Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>Uses of Interface org.apache.maven.enforcer.rule.api.EnforcerRule
(Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css"
href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Interface
org.apache.maven.enforcer.rule.api.EnforcerRule (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="Uses of Interface
org.apache.maven.enforcer.rule.api.EnforcerRule (Apache Maven Enforcer API
1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRule2.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRule2.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRule2.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Interface org.apache.maven.enforcer.rule.api.EnforcerRule2
(Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>Uses of Interface org.apache.maven.enforcer.rule.api.EnforcerRule2
(Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css"
href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Interface
org.apache.maven.enforcer.rule.api.EnforcerRule2 (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="Uses of Interface
org.apache.maven.enforcer.rule.api.EnforcerRule2 (Apache Maven Enforcer API
1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRuleException.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRuleException.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRuleException.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Class org.apache.maven.enforcer.rule.api.EnforcerRuleException
(Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>Uses of Class org.apache.maven.enforcer.rule.api.EnforcerRuleException
(Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css"
href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Class
org.apache.maven.enforcer.rule.api.EnforcerRuleException (Apache Maven Enforcer
API 1.5-SNAPSHOT API)";
+ parent.document.title="Uses of Class
org.apache.maven.enforcer.rule.api.EnforcerRuleException (Apache Maven Enforcer
API 1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRuleHelper.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRuleHelper.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/class-use/EnforcerRuleHelper.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Interface org.apache.maven.enforcer.rule.api.EnforcerRuleHelper
(Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>Uses of Interface org.apache.maven.enforcer.rule.api.EnforcerRuleHelper
(Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css"
href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Interface
org.apache.maven.enforcer.rule.api.EnforcerRuleHelper (Apache Maven Enforcer
API 1.5-SNAPSHOT API)";
+ parent.document.title="Uses of Interface
org.apache.maven.enforcer.rule.api.EnforcerRuleHelper (Apache Maven Enforcer
API 1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-frame.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-frame.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-frame.html
Sun Aug 23 19:50:55 2015
@@ -3,7 +3,7 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.maven.enforcer.rule.api (Apache Maven Enforcer API
1.5-SNAPSHOT API)</title>
+<title>org.apache.maven.enforcer.rule.api (Apache Maven Enforcer API 1.4.1
API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css"
title="Style">
</head>
<body>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-summary.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-summary.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-summary.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.maven.enforcer.rule.api (Apache Maven Enforcer API
1.5-SNAPSHOT API)</title>
+<title>org.apache.maven.enforcer.rule.api (Apache Maven Enforcer API 1.4.1
API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css"
title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="org.apache.maven.enforcer.rule.api (Apache
Maven Enforcer API 1.5-SNAPSHOT API)";
+ parent.document.title="org.apache.maven.enforcer.rule.api (Apache
Maven Enforcer API 1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-tree.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-tree.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-tree.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>org.apache.maven.enforcer.rule.api Class Hierarchy (Apache Maven
Enforcer API 1.5-SNAPSHOT API)</title>
+<title>org.apache.maven.enforcer.rule.api Class Hierarchy (Apache Maven
Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css"
title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="org.apache.maven.enforcer.rule.api Class
Hierarchy (Apache Maven Enforcer API 1.5-SNAPSHOT API)";
+ parent.document.title="org.apache.maven.enforcer.rule.api Class
Hierarchy (Apache Maven Enforcer API 1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-use.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-use.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/org/apache/maven/enforcer/rule/api/package-use.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Uses of Package org.apache.maven.enforcer.rule.api (Apache Maven
Enforcer API 1.5-SNAPSHOT API)</title>
+<title>Uses of Package org.apache.maven.enforcer.rule.api (Apache Maven
Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css"
title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Uses of Package
org.apache.maven.enforcer.rule.api (Apache Maven Enforcer API 1.5-SNAPSHOT
API)";
+ parent.document.title="Uses of Package
org.apache.maven.enforcer.rule.api (Apache Maven Enforcer API 1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/overview-tree.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/overview-tree.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/overview-tree.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Class Hierarchy (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>Class Hierarchy (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Class Hierarchy (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="Class Hierarchy (Apache Maven Enforcer API
1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/serialized-form.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/serialized-form.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/apidocs/serialized-form.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Serialized Form (Apache Maven Enforcer API 1.5-SNAPSHOT API)</title>
+<title>Serialized Form (Apache Maven Enforcer API 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Serialized Form (Apache Maven Enforcer API
1.5-SNAPSHOT API)";
+ parent.document.title="Serialized Form (Apache Maven Enforcer API
1.4.1 API)";
}
//-->
</script>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/checkstyle.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/checkstyle.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/checkstyle.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/custom-rule.zip
==============================================================================
Binary files - no diff available.
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependencies.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependencies.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependencies.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -492,7 +492,7 @@
<div class="section">
<h3><a name="Dependency_Tree"></a>Dependency Tree</h3>
<ul>
-<li>org.apache.maven.enforcer:enforcer-api:jar:1.5-SNAPSHOT <img id="_img1"
src="./images/icon_info_sml.gif" alt="Information"
onclick="toggleDependencyDetail( '_dep0', '_img1' );" style="cursor:
pointer;vertical-align:text-bottom;"></img><div id="_dep0" style="display:none">
+<li>org.apache.maven.enforcer:enforcer-api:jar:1.4.1 <img id="_img1"
src="./images/icon_info_sml.gif" alt="Information"
onclick="toggleDependencyDetail( '_dep0', '_img1' );" style="cursor:
pointer;vertical-align:text-bottom;"></img><div id="_dep0" style="display:none">
<table border="0" class="table table-striped">
<tr class="a">
<th>Apache Maven Enforcer API</th></tr>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependency-convergence.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependency-convergence.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependency-convergence.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -472,7 +472,7 @@
<td>
<table border="0" class="table table-striped">
<tr class="b">
-<td width="25%">1.5-SNAPSHOT</td>
+<td width="25%">1.4.1</td>
<td>
<ol style="list-style-type: lower-alpha">
<li><a class="externalLink"
href="http://maven.apache.org/enforcer/enforcer-rules">org.apache.maven.enforcer:enforcer-rules</a></li>
@@ -485,7 +485,7 @@
<td>
<table border="0" class="table table-striped">
<tr class="b">
-<td width="25%">1.5-SNAPSHOT</td>
+<td width="25%">1.4.1</td>
<td>
<ol style="list-style-type: lower-alpha">
<li><a class="externalLink"
href="http://maven.apache.org/enforcer/maven-enforcer-plugin">org.apache.maven.plugins:maven-enforcer-plugin</a></li>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependency-info.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependency-info.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependency-info.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -399,30 +399,30 @@
<div class="source"><pre class="prettyprint linenums"><dependency>
<groupId>org.apache.maven.enforcer</groupId>
<artifactId>enforcer-api</artifactId>
- <version>1.5-SNAPSHOT</version>
+ <version>1.4.1</version>
</dependency></pre></div></div>
<div class="section">
<h3><a name="Apache_Buildr"></a>Apache Buildr</h3><a name="Apache_Buildr"></a>
-<div class="source"><pre class="prettyprint
linenums">'org.apache.maven.enforcer:enforcer-api:jar:1.5-SNAPSHOT'</pre></div></div>
+<div class="source"><pre class="prettyprint
linenums">'org.apache.maven.enforcer:enforcer-api:jar:1.4.1'</pre></div></div>
<div class="section">
<h3><a name="Apache_Ant"></a>Apache Ant</h3><a name="Apache_Ant"></a>
-<div class="source"><pre class="prettyprint linenums"><dependency
org="org.apache.maven.enforcer" name="enforcer-api"
rev="1.5-SNAPSHOT">
+<div class="source"><pre class="prettyprint linenums"><dependency
org="org.apache.maven.enforcer" name="enforcer-api"
rev="1.4.1">
<artifact name="enforcer-api" type="jar" />
</dependency></pre></div></div>
<div class="section">
<h3><a name="Groovy_Grape"></a>Groovy Grape</h3><a name="Groovy_Grape"></a>
<div class="source"><pre class="prettyprint linenums">@Grapes(
-@Grab(group='org.apache.maven.enforcer', module='enforcer-api',
version='1.5-SNAPSHOT')
+@Grab(group='org.apache.maven.enforcer', module='enforcer-api',
version='1.4.1')
)</pre></div></div>
<div class="section">
<h3><a name="Grails"></a>Grails</h3><a name="Grails"></a>
-<div class="source"><pre class="prettyprint linenums">compile
'org.apache.maven.enforcer:enforcer-api:1.5-SNAPSHOT'</pre></div></div>
+<div class="source"><pre class="prettyprint linenums">compile
'org.apache.maven.enforcer:enforcer-api:1.4.1'</pre></div></div>
<div class="section">
<h3><a name="Leiningen"></a>Leiningen</h3><a name="Leiningen"></a>
-<div class="source"><pre class="prettyprint
linenums">[org.apache.maven.enforcer/enforcer-api
"1.5-SNAPSHOT"]</pre></div></div>
+<div class="source"><pre class="prettyprint
linenums">[org.apache.maven.enforcer/enforcer-api
"1.4.1"]</pre></div></div>
<div class="section">
<h3><a name="SBT"></a>SBT</h3><a name="SBT"></a>
-<div class="source"><pre class="prettyprint linenums">libraryDependencies +=
"org.apache.maven.enforcer" %% "enforcer-api" %
"1.5-SNAPSHOT"</pre></div></div></div>
+<div class="source"><pre class="prettyprint linenums">libraryDependencies +=
"org.apache.maven.enforcer" %% "enforcer-api" %
"1.4.1"</pre></div></div></div>
</div>
</div>
</div>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependency-management.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependency-management.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/dependency-management.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -443,13 +443,13 @@
<tr class="b">
<td>org.apache.maven.enforcer</td>
<td><a class="externalLink"
href="http://maven.apache.org/enforcer/enforcer-api">enforcer-api</a></td>
-<td>1.5-SNAPSHOT</td>
+<td>1.4.1</td>
<td>jar</td>
<td><a class="externalLink"
href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version
2.0</a></td></tr>
<tr class="a">
<td>org.apache.maven.enforcer</td>
<td><a class="externalLink"
href="http://maven.apache.org/enforcer/enforcer-rules">enforcer-rules</a></td>
-<td>1.5-SNAPSHOT</td>
+<td>1.4.1</td>
<td>jar</td>
<td><a class="externalLink"
href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version
2.0</a></td></tr>
<tr class="b">
@@ -501,7 +501,7 @@
<tr class="b">
<td>org.apache.maven.enforcer</td>
<td><a class="externalLink"
href="http://maven.apache.org/enforcer/enforcer-rules">enforcer-rules</a></td>
-<td>1.5-SNAPSHOT</td>
+<td>1.4.1</td>
<td>test-jar</td>
<td><a class="externalLink"
href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache License, Version
2.0</a></td></tr>
<tr class="a">
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/distribution-management.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/distribution-management.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/distribution-management.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/findbugs.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/findbugs.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/findbugs.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/index.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/index.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/index.html
Sun Aug 23 19:50:55 2015
@@ -76,7 +76,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/integration.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/integration.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/integration.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/issue-tracking.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/issue-tracking.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/issue-tracking.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/mail-lists.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/mail-lists.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/mail-lists.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/plugin-management.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/plugin-management.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/plugin-management.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/plugins.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/plugins.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/plugins.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/project-info.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/project-info.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/project-info.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/project-reports.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/project-reports.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/project-reports.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/project-summary.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/project-summary.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/project-summary.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -435,7 +435,7 @@
<td>enforcer-api</td></tr>
<tr class="b">
<td>Version</td>
-<td>1.5-SNAPSHOT</td></tr>
+<td>1.4.1</td></tr>
<tr class="a">
<td>Type</td>
<td>jar</td></tr>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/sonar.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/sonar.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/sonar.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/source-repository.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/source-repository.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/source-repository.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -398,21 +398,21 @@
<div class="section">
<h2><a name="Web_Access"></a>Web Access</h2><a name="Web_Access"></a>
<p>The following is a link to the online source repository.</p>
-<div class="source"><pre class="prettyprint linenums"><a class="externalLink"
href="http://svn.apache.org/viewvc/maven/enforcer/trunk/enforcer-api">http://svn.apache.org/viewvc/maven/enforcer/trunk/enforcer-api</a></pre></div></div>
+<div class="source"><pre class="prettyprint linenums"><a class="externalLink"
href="http://svn.apache.org/viewvc/maven/enforcer/tags/enforcer-1.4.1/enforcer-api">http://svn.apache.org/viewvc/maven/enforcer/tags/enforcer-1.4.1/enforcer-api</a></pre></div></div>
<div class="section">
<h2><a name="Anonymous_access"></a>Anonymous access</h2><a
name="Anonymous_access"></a>
<p>The source can be checked out anonymously from SVN with this command:</p>
-<div class="source"><pre class="prettyprint linenums">$ svn checkout
http://svn.apache.org/repos/asf/maven/enforcer/trunk/enforcer-api/
enforcer-api</pre></div></div>
+<div class="source"><pre class="prettyprint linenums">$ svn checkout
http://svn.apache.org/repos/asf/maven/enforcer/tags/enforcer-1.4.1/enforcer-api
enforcer-api</pre></div></div>
<div class="section">
<h2><a name="Developer_access"></a>Developer access</h2><a
name="Developer_access"></a>
<p>Everyone can access the Subversion repository via HTTP, but Committers must
checkout the Subversion repository via HTTPS.</p>
-<div class="source"><pre class="prettyprint linenums">$ svn checkout
https://svn.apache.org/repos/asf/maven/enforcer/trunk/enforcer-api/
enforcer-api</pre></div>
+<div class="source"><pre class="prettyprint linenums">$ svn checkout
https://svn.apache.org/repos/asf/maven/enforcer/tags/enforcer-1.4.1/enforcer-api
enforcer-api</pre></div>
<p>To commit changes to the repository, execute the following command to
commit your changes (svn will prompt you for your password)</p>
<div class="source"><pre class="prettyprint linenums">$ svn commit --username
your-username -m "A message"</pre></div></div>
<div class="section">
<h2><a name="Access_from_behind_a_firewall"></a>Access from behind a
firewall</h2><a name="Access_from_behind_a_firewall"></a>
<p>For those users who are stuck behind a corporate firewall which is blocking
HTTP access to the Subversion repository, you can try to access it via the
developer connection:</p>
-<div class="source"><pre class="prettyprint linenums">$ svn checkout
https://svn.apache.org/repos/asf/maven/enforcer/trunk/enforcer-api/
enforcer-api</pre></div></div>
+<div class="source"><pre class="prettyprint linenums">$ svn checkout
https://svn.apache.org/repos/asf/maven/enforcer/tags/enforcer-1.4.1/enforcer-api
enforcer-api</pre></div></div>
<div class="section">
<h2><a name="Access_through_a_proxy"></a>Access through a proxy</h2><a
name="Access_through_a_proxy"></a>
<p>The Subversion client can go through a proxy, if you configure it to do so.
First, edit your "servers" configuration file to indicate which proxy
to use. The file's location depends on your operating system. On Linux or Unix
it is located in the directory "~/.subversion". On Windows it is in
"%APPDATA%\Subversion". (Try "echo %APPDATA%", note this is
a hidden directory.)</p>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/surefire-report.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/surefire-report.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/surefire-report.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/taglist.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/taglist.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/taglist.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/team-list.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/team-list.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/team-list.html
Sun Aug 23 19:50:55 2015
@@ -75,7 +75,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/writing-a-custom-rule.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/writing-a-custom-rule.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/writing-a-custom-rule.html
Sun Aug 23 19:50:55 2015
@@ -76,7 +76,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -314,7 +314,7 @@
<description>This is my custom rule.</description>
<properties>
- <api.version>1.5-SNAPSHOT</api.version>
+ <api.version>1.4.1</api.version>
<maven.version>2.0.9</maven.version>
</properties>
@@ -473,7 +473,7 @@ public class MyCustomRule
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
- <version>1.5-SNAPSHOT</version>
+ <version>1.4.1</version>
<dependencies>
<dependency>
<groupId>custom-rule</groupId>
@@ -505,7 +505,7 @@ public class MyCustomRule
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
- <version>1.5-SNAPSHOT</version>
+ <version>1.4.1</version>
<dependencies>
<dependency>
<groupId>custom-rule</groupId>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/index.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/index.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/index.html
Sun Aug 23 19:50:55 2015
@@ -4,7 +4,7 @@
<!-- this is a JXR report set -->
<head>
<meta http-equiv="content-type" content="text/html;
charset=UTF-8" />
- <title>Apache Maven Enforcer API 1.5-SNAPSHOT Reference</title>
+ <title>Apache Maven Enforcer API 1.4.1 Reference</title>
</head>
<frameset cols="20%,80%">
<frameset rows="30%,70%">
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/org/apache/maven/enforcer/rule/api/package-frame.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/org/apache/maven/enforcer/rule/api/package-frame.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/org/apache/maven/enforcer/rule/api/package-frame.html
Sun Aug 23 19:50:55 2015
@@ -3,7 +3,7 @@
<html xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html;
charset=UTF-8" />
- <title>Apache Maven Enforcer API 1.5-SNAPSHOT Reference Package
org.apache.maven.enforcer.rule.api</title>
+ <title>Apache Maven Enforcer API 1.4.1 Reference Package
org.apache.maven.enforcer.rule.api</title>
<link rel="stylesheet" type="text/css"
href="../../../../../../stylesheet.css" title="style" />
</head>
<body>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/org/apache/maven/enforcer/rule/api/package-summary.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/org/apache/maven/enforcer/rule/api/package-summary.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/org/apache/maven/enforcer/rule/api/package-summary.html
Sun Aug 23 19:50:55 2015
@@ -3,7 +3,7 @@
<html xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html;
charset=UTF-8" />
- <title>Apache Maven Enforcer API 1.5-SNAPSHOT Reference Package
org.apache.maven.enforcer.rule.api</title>
+ <title>Apache Maven Enforcer API 1.4.1 Reference Package
org.apache.maven.enforcer.rule.api</title>
<link rel="stylesheet" type="text/css"
href="../../../../../../stylesheet.css" title="style" />
</head>
<body>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/overview-frame.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/overview-frame.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/overview-frame.html
Sun Aug 23 19:50:55 2015
@@ -3,7 +3,7 @@
<html xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html;
charset=UTF-8" />
- <title>Apache Maven Enforcer API 1.5-SNAPSHOT Reference</title>
+ <title>Apache Maven Enforcer API 1.4.1 Reference</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css"
title="style" />
</head>
<body>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/overview-summary.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/overview-summary.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-api/xref/overview-summary.html
Sun Aug 23 19:50:55 2015
@@ -3,7 +3,7 @@
<html xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html;
charset=UTF-8" />
- <title>Apache Maven Enforcer API 1.5-SNAPSHOT Reference</title>
+ <title>Apache Maven Enforcer API 1.4.1 Reference</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css"
title="style" />
</head>
<body>
@@ -24,7 +24,7 @@
</ul>
</div>
- <h2>Apache Maven Enforcer API 1.5-SNAPSHOT
Reference</h2>
+ <h2>Apache Maven Enforcer API 1.4.1 Reference</h2>
<table class="summary">
<thead>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/alwaysFail.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/alwaysFail.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/alwaysFail.html
Sun Aug 23 19:50:55 2015
@@ -76,7 +76,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -313,7 +313,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
- <version>1.5-SNAPSHOT</version>
+ <version>1.4.1</version>
<executions>
<execution>
<id>enforce</id>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/alwaysPass.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/alwaysPass.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/alwaysPass.html
Sun Aug 23 19:50:55 2015
@@ -76,7 +76,7 @@
<li id="publishDate" class="pull-right"><span
class="divider">|</span> Last Published: 2015-08-23</li>
<li id="projectVersion" class="pull-right">
- Version: 1.5-SNAPSHOT
+ Version: 1.4.1
</li>
</ul>
@@ -313,7 +313,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
- <version>1.5-SNAPSHOT</version>
+ <version>1.4.1</version>
<executions>
<execution>
<id>enforce</id>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/apidocs/allclasses-frame.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/apidocs/allclasses-frame.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/apidocs/allclasses-frame.html
Sun Aug 23 19:50:55 2015
@@ -3,7 +3,7 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>All Classes (Apache Maven Enforcer Rules 1.5-SNAPSHOT API)</title>
+<title>All Classes (Apache Maven Enforcer Rules 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/apidocs/allclasses-noframe.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/apidocs/allclasses-noframe.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/apidocs/allclasses-noframe.html
Sun Aug 23 19:50:55 2015
@@ -3,7 +3,7 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>All Classes (Apache Maven Enforcer Rules 1.5-SNAPSHOT API)</title>
+<title>All Classes (Apache Maven Enforcer Rules 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
Modified:
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/apidocs/constant-values.html
==============================================================================
---
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/apidocs/constant-values.html
(original)
+++
websites/production/maven/components/enforcer-archives/enforcer-LATEST/enforcer-rules/apidocs/constant-values.html
Sun Aug 23 19:50:55 2015
@@ -3,13 +3,13 @@
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
-<title>Constant Field Values (Apache Maven Enforcer Rules 1.5-SNAPSHOT
API)</title>
+<title>Constant Field Values (Apache Maven Enforcer Rules 1.4.1 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
- parent.document.title="Constant Field Values (Apache Maven Enforcer
Rules 1.5-SNAPSHOT API)";
+ parent.document.title="Constant Field Values (Apache Maven Enforcer
Rules 1.4.1 API)";
}
//-->
</script>