We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0671354 commit 691a83cCopy full SHA for 691a83c
zookeeper-assembly/pom.xml
@@ -172,6 +172,30 @@
172
<skip>true</skip>
173
</configuration>
174
</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>
199
</plugins>
200
</build>
201
0 commit comments