blob: 92603e558948ca27ce3a41761b47eebc126dbe6e [file] [log] [blame]
------
About
------
Hervé Boutemy
------
2023-03-11
------
~~ 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.
~~ NOTE: For help with the syntax of this file, see:
~~ https://maven.apache.org/guides/mini/guide-apt-format.html
${project.name}
${project.name} helps creating a source-release artifact that contains the fully buildable project directory source structure.
This is the artifact which is the official subject of any release vote.
To use it, configure <<<maven-assembly-plugin>>>:
+-----+
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.apache.resources</groupId>
<artifactId>apache-source-release-assembly-descriptor</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>source-release-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<!--
use this flag to generate source release assembly from the top of a multi modules
maven project.
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
-->
<descriptorRefs>
<!--
There are 3 descriptors available, choose one of them:
* source-release (zip only, this one is used in the ASF parent POM)
* source-release-zip-tar (both zip and tar)
* source-release-tar (tar only)
-->
<descriptorRef>source-release</descriptorRef>
</descriptorRefs>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</execution>
</executions>
</plugin>
+-----+