Skip to content

Commit 0103c2f

Browse files
authored
Merge pull request #1655 from alohaeditor/hotfix-gpu-1158
Add assembly and deployment of changelog entries
2 parents 2126bf8 + eb67a8a commit 0103c2f

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

build/assembly/changelog-entries.xml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<assembly
2+
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
5+
<id>changelog-entries</id>
6+
<formats>
7+
<format>zip</format>
8+
</formats>
9+
<fileSets>
10+
<fileSet>
11+
<directory>${project.basedir}/build/changelog/entries</directory>
12+
<outputDirectory>/</outputDirectory>
13+
<filtered>false</filtered>
14+
</fileSet>
15+
</fileSets>
16+
<includeBaseDirectory>false</includeBaseDirectory>
17+
</assembly>

pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,20 @@
405405
</descriptors>
406406
</configuration>
407407
</execution>
408+
<execution>
409+
<id>changelog</id>
410+
<phase>package</phase>
411+
<goals>
412+
<goal>single</goal>
413+
</goals>
414+
<configuration>
415+
<attach>true</attach>
416+
<appendAssemblyId>true</appendAssemblyId>
417+
<descriptors>
418+
<descriptor>${project.basedir}/build/assembly/changelog-entries.xml</descriptor>
419+
</descriptors>
420+
</configuration>
421+
</execution>
408422
</executions>
409423
</plugin>
410424
<plugin>

0 commit comments

Comments
 (0)