You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/01/27 12:51:26 UTC

[maven-enforcer] 02/16: Enhanced. Fixed links

This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch BADGES
in repository https://gitbox.apache.org/repos/asf/maven-enforcer.git

commit 639d59bf5b6105aa3057cc393c04c34bb1a849f3
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Jan 13 17:17:55 2018 +0100

    Enhanced. Fixed links
---
 README.md | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 52 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 558db9d..7fd7e79 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,67 @@
 # Maven Enforcer Plugin
 
 [![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/apache/maven-enforcer.svg?label=License)][license]
-[![Maven Central](https://img.shields.io/maven-central/v/org.apache.maven.plugins/maven-enforcer.svg?label=Maven%20Central)](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.maven.plugins%22%20a%3A%22maven-enforcer%22)
-[![Build Status](https://img.shields.io/jenkins/s/https/builds.apache.org/view/M-R/view/Maven/job/maven-box/job/maven-enforcer/job/master.svg?style=flat-square)][build]
+[![Maven Central](https://img.shields.io/maven-central/v/org.apache.maven.plugins/maven-enforcer.svg?label=Maven%20Central)](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.apache.maven.plugins%22%20a%3A%22maven-enforcer-plugin%22)
+[![Jenkins Status](https://img.shields.io/jenkins/s/https/builds.apache.org/view/M-R/view/Maven/job/maven-box/job/maven-enforcer/job/master.svg?style=flat-square)][build]
+[![Jenkins tests](https://img.shields.io/jenkins/t/https/builds.apache.org/view/M-R/view/Maven/job/maven-box/job/maven-enforcer/job/master.svg?style=flat-square)][build]
+
+## Overview
+
+The [Maven Enforcer Plugin][home] ....
+
+
+
+# Home
 
 
 Test
 
+
+## Deploying web site
+
+You can use the `deploySite.sh` or `deploySite.bat` script
+Without any profile, the site will be deployed to `https://maven.apache.org/enforcer-archives/enforcer-${project.version}`
+
+```
+sh ./deploySite.sh -Preporting
+```
+
+To deploy main version https://maven.apache.org/enforcer, use
+```
+sh ./deploySite.sh -Preporting -Psite-release
+```
+
+Note you can add arguments to the script to pass your svn credentials:
+```
+-Dusername=
+-Dpassword=
+```
+
+## Workflow for site when releasing
+
+Once release staged, you can publish a staged site.
+```
+cd target/checkout
+sh ./deploySite.sh -Preporting
+```
+content will be in `https://maven.apache.org/enforcer-archives/enforcer-${project.version}`
+
+Once vote passed, redeploy main site:
+
+```
+cd target/checkout (or use the version tag)
+sh ./deploySite.sh -Preporting -Psite-release
+```
+
+
 License
 -------
 [Apache License, Version 2.0, January 2004][license]
 
 
 
+[home]: http://maven.apache.org/enforcer/maven-enforcer-plugin
 [license]: https://www.apache.org/licenses/LICENSE-2.0.html
 [build]: https://builds.apache.org/view/M-R/view/Maven/job/maven-box/job/maven-enforcer/job/master/
-
+[build-status]: https://img.shields.io/jenkins/s/https/builds.apache.org/view/M-R/view/Maven/job/maven-box/job/maven-enforcer/job/master.svg?style=flat-square
+[build-tests]: https://img.shields.io/jenkins/t/https/builds.apache.org/view/M-R/view/Maven/job/maven-box/job/maven-enforcer/job/master.svg?style=flat-square

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.