This is an automated email from the ASF dual-hosted git repository.
soenkeliebau pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-training.git
The following commit(s) were added to refs/heads/master by this push:
new 9e87b11 Add Incubator Release Checklist content (#7)
9e87b11 is described below
commit 9e87b1147ad3361cb47592aedc2d75d513cbdfca
Author: Justin Mclean <[email protected]>
AuthorDate: Thu May 16 18:57:56 2019 +1000
Add Incubator Release Checklist content (#7)
* Add MIT license to LICENSE.
* generate date and all people are cool
* Asciidoctor incubating checklist
---
content/Incubator/ReleaseChecklist/pom.xml | 110 +++++++++++++++++++++
.../src/main/asciidoc/index-docinfo-footer.html | 1 +
.../ReleaseChecklist/src/main/asciidoc/index.adoc | 76 ++++++++++++++
3 files changed, 187 insertions(+)
diff --git a/content/Incubator/ReleaseChecklist/pom.xml
b/content/Incubator/ReleaseChecklist/pom.xml
new file mode 100644
index 0000000..c160d5e
--- /dev/null
+++ b/content/Incubator/ReleaseChecklist/pom.xml
@@ -0,0 +1,110 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ 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.
+
+-->
+<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>
+
+ <parent>
+ <groupId>org.apache</groupId>
+ <artifactId>apache</artifactId>
+ <version>21</version>
+ </parent>
+
+ <groupId>org.apache.training</groupId>
+ <artifactId>incubator-release-checklist</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>war</packaging>
+
+ <name>Incubator Release Chacklist</name>
+ <description>A release checklist to see if a release complies with
incubator and ASF.</description>
+
+ <properties>
+
<project.docs.directory>${project.build.directory}/generated-docs</project.docs.directory>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+
<asciidoctor.maven.plugin.version>2.0.0-RC.1</asciidoctor.maven.plugin.version>
+ <asciidoctorj.version>2.0.0-RC.2</asciidoctorj.version>
+ </properties>
+
+ <build>
+ <plugins>
+ <!-- Check if all source files have the required apache license
headers -->
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>license-check</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.asciidoctor</groupId>
+ <artifactId>asciidoctor-maven-plugin</artifactId>
+ <version>${asciidoctor.maven.plugin.version}</version>
+ <configuration>
+ <backend>html5</backend>
+ </configuration>
+ <executions>
+ <execution>
+ <id>generate-docs</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>process-asciidoc</goal>
+ </goals>
+ <configuration>
+ <!-- Configure where are all the asciidoc source
files located -->
+
<sourceDirectory>src/main/asciidoc</sourceDirectory>
+ <!-- Configure the target director to where will
the output be generated -->
+
<outputDirectory>${project.docs.directory}</outputDirectory>
+ <attributes>
+ <icons>font</icons>
+ </attributes>
+ </configuration>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.asciidoctor</groupId>
+ <artifactId>asciidoctorj</artifactId>
+ <version>${asciidoctorj.version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>3.2.2</version>
+ <configuration>
+ <failOnMissingWebXml>false</failOnMissingWebXml>
+
<warSourceDirectory>${project.build.directory}/generated-docs</warSourceDirectory>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-maven-plugin</artifactId>
+ <version>9.4.14.v20181114</version>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git
a/content/Incubator/ReleaseChecklist/src/main/asciidoc/index-docinfo-footer.html
b/content/Incubator/ReleaseChecklist/src/main/asciidoc/index-docinfo-footer.html
new file mode 100644
index 0000000..5bc78fd
--- /dev/null
+++
b/content/Incubator/ReleaseChecklist/src/main/asciidoc/index-docinfo-footer.html
@@ -0,0 +1 @@
+<div align="center">Copyright © 2019 Justin Mclean, Licensed under the
Apache License.</div>
\ No newline at end of file
diff --git a/content/Incubator/ReleaseChecklist/src/main/asciidoc/index.adoc
b/content/Incubator/ReleaseChecklist/src/main/asciidoc/index.adoc
new file mode 100644
index 0000000..df6ff1e
--- /dev/null
+++ b/content/Incubator/ReleaseChecklist/src/main/asciidoc/index.adoc
@@ -0,0 +1,76 @@
+////
+
+ 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.
+
+////
+
+
+
+== Incubator Release Checklist
+:description: Incubator Release checklist
+:keywords: ASF,Release,Incubator
+:author: Justin Mclean
+:email: [email protected]
+:icons: font
+:docinfo:
+:nofooter:
+
+Releases made at the Apache Software Foundation by podling projects need to be
voted on by the Incubator project management committee (IPMC) to see if they
comply with ASF legal, release and distribution policy.
+
+NOTE: Note that this is not official policy but may help with checking
releases.
+
+.Please fill in the following:
+[%interactive, none]
+* [ ] Are release files in the correct location?
+* [ ] Do release files have the word incubating in their name?
+* [ ] Are the digital signature and hashes correct?
+* [ ] Does a DISCLAIMER file exist?
+* [ ] Do LICENSE and NOTICE files exist?
+* [ ] Is the LICENSE and NOTICE text correct?
+* [ ] Is the NOTICE year correct?
+* [ ] Un-included software dependencies are not mentioned in LICENSE or NOTICE?
+* [ ] License information is not mentioned in NOTICE?
+* Is there any 3rd party code contained inside the release? If so:
+[%interactive, none]
+** [ ] Does the software have a compatible license?
+** [ ] Are all software licenses mentioned in LICENSE?
+** [ ] Is the full text of the licenses (or pointers to it) in LICENSE?
+** Is any of this code Apache licensed? Do they have NOTICE files? If so:
+[%interactive, none]
+*** [ ] Have relevant parts of those NOTICE files been added to this NOTICE
file?
+* [ ] Do all source files have ASF headers?
+* [ ] Do the contents of the release match with what's tagged in version
control?
+* [ ] Are there any unexpected binary files in the release?
+* [ ] Can you compile from source? Is the instruction clear?
+
+.Is the issue minor?
+[%interactive, none]
+* [ ] Yes
+* [ ] No
+* [ ] Unsure
+
+.Could it possibly be fixed in the next release?
+[%interactive, none]
+* [ ] Yes
+* [ ] No
+* [ ] Unsure
+
+.I vote with:
+[%interactive, none]
+* [ ] +1 release the software
+* [ ] +0 not sure if it should be released
+* [ ] -1 do not release the software because...
+