-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf8e991
commit db14e10
Showing
6 changed files
with
146 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?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.maven</groupId> | ||
<artifactId>maven-parent</artifactId> | ||
<version>44-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>maven-shared-doc-resource</artifactId> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-remote-resources-plugin</artifactId> | ||
<configuration> | ||
<includes> | ||
<include>**/*.vm</include> | ||
<include>**/*.cgi</include> | ||
</includes> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>bundle</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
54 changes: 54 additions & 0 deletions
54
maven-shared-doc-resource/src/main/resources/markdown/download.md.vm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
title: Download ${project.name} Source | ||
--- | ||
#* | ||
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. | ||
*# | ||
#set( $h = "#" ) | ||
#set( $downloadDirectory = $project.properties.downloadDirectory ) | ||
#if( ! $downloadDirectory ) | ||
#set( $downloadDirectory = "plugins" ) | ||
#end | ||
#set( $downloadArtifactId = $project.properties.downloadArtifactId ) | ||
#if( ! $downloadArtifactId ) | ||
#set( $downloadArtifactId = $project.artifactId ) | ||
#end | ||
|
||
# Download ${project.name} ${project.version} Source | ||
|
||
${project.name} ${project.version} is distributed in source format\. Use a source archive if you intend to build | ||
${project.name} yourself\. Otherwise, simply use the ready\-made binary artifacts from central repository\. | ||
|
||
In order to guard against corrupted downloads/installations, it is highly recommended to | ||
[verify the signature](https://www.apache.org/dev/release-signing#verifying-signature) | ||
of the release bundles against the public [KEYS](https://www.apache.org/dist/maven/KEYS) used by the Apache Maven | ||
developers\. | ||
|
||
${project.name} is distributed under the [Apache License, version 2\.0](https://www.apache.org/licenses/)\. | ||
|
||
${h}${h} ${project.name} ${project.version} | ||
|
||
This is the current stable version of ${project.name}\. | ||
|
||
| | Link |Checksum|Signature| | ||
|---|--------------------------------------------------------------------------------------------------------------------------------------------------------|---|---| | ||
${project.name} ${project.version} \(Source zip\)| [${downloadArtifactId}\-${project.version}\-source\-release\.zip](\[preferred\]/maven/${downloadDirectory}/${downloadArtifactId}-${project.version}-source-release.zip) |[${downloadArtifactId}\-${project.version}\-source\-release\.zip\.sha512](https://www.apache.org/dist/maven/${downloadDirectory}/${downloadArtifactId}-${project.version}-source-release.zip.sha512)|[${downloadArtifactId}\-${project.version}\-source\-release\.zip\.asc](https://www.apache.org/dist/maven/${downloadDirectory}/${downloadArtifactId}-${project.version}-source-release.zip.asc)| | ||
|
||
${h}${h} Previous Versions | ||
|
||
Older non\-recommended releases can be found on our [archive site](https://archive.apache.org/dist/maven/${downloadDirectory}/)\. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters