Skip to content

Commit 691a83c

Browse files
committed
Test attach-artifact
1 parent 0671354 commit 691a83c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

zookeeper-assembly/pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,30 @@
172172
<skip>true</skip>
173173
</configuration>
174174
</plugin>
175+
176+
<!-- To include binary tarball to Bintray -->
177+
<plugin>
178+
<groupId>org.codehaus.mojo</groupId>
179+
<artifactId>build-helper-maven-plugin</artifactId>
180+
<version>3.2.0</version>
181+
<executions>
182+
<execution>
183+
<id>attach-artifacts</id>
184+
<phase>package</phase>
185+
<goals>
186+
<goal>attach-artifact</goal>
187+
</goals>
188+
<configuration>
189+
<artifacts>
190+
<artifact>
191+
<file>${project.build.directory}</file>
192+
<type>tar.gz</type>
193+
</artifact>
194+
</artifacts>
195+
</configuration>
196+
</execution>
197+
</executions>
198+
</plugin>
175199
</plugins>
176200
</build>
177201

0 commit comments

Comments
 (0)