After upgrading maven-assembly-plugin to 3.0 "descriptor" is now "descriptors"
Project: http://git-wip-us.apache.org/repos/asf/calcite-avatica/repo Commit: http://git-wip-us.apache.org/repos/asf/calcite-avatica/commit/b4103f36 Tree: http://git-wip-us.apache.org/repos/asf/calcite-avatica/tree/b4103f36 Diff: http://git-wip-us.apache.org/repos/asf/calcite-avatica/diff/b4103f36 Branch: refs/heads/branch-avatica-1.10 Commit: b4103f36480b217d75a173a190f5298c083a308e Parents: 63c0ac9 Author: Julian Hyde <[email protected]> Authored: Tue May 23 12:30:54 2017 -0700 Committer: Julian Hyde <[email protected]> Committed: Tue May 23 12:30:54 2017 -0700 ---------------------------------------------------------------------- pom.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/calcite-avatica/blob/b4103f36/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 098a4cb..e99c13f 100644 --- a/pom.xml +++ b/pom.xml @@ -675,7 +675,7 @@ limitations under the License. <phase>none</phase> </execution> <execution> - <id>source-release-assembly-calcite</id> + <id>source-release-assembly-avatica</id> <phase>package</phase> <goals> <goal>single</goal> @@ -683,7 +683,9 @@ limitations under the License. <configuration> <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot> <appendAssemblyId>false</appendAssemblyId> - <descriptor>${top.dir}/src/main/config/assemblies/source-assembly.xml</descriptor> + <descriptors> + <descriptor>${top.dir}/src/main/config/assemblies/source-assembly.xml</descriptor> + </descriptors> <finalName>apache-calcite-avatica-${project.version}-src</finalName> <tarLongFileMode>gnu</tarLongFileMode> </configuration>
