improve build for releases

This commit is contained in:
Jonathan Shook 2020-03-25 09:31:52 -05:00
parent 7c44412f53
commit ee0193d73e
4 changed files with 21 additions and 9 deletions

View File

@ -242,12 +242,6 @@
<version>${docker.java.version}</version>
</dependency>
<dependency>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java-transport-jersey</artifactId>
<version>${docker.java.version}</version>
</dependency>
<dependency>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java-transport-okhttp</artifactId>
@ -530,6 +524,7 @@
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

View File

@ -1,5 +1,7 @@
#!/bin/bash
# update nuxt
set -x
set -e
GUIDEBOOK="target/guidebook"

View File

@ -9,8 +9,15 @@ cd target
if [ -e "nb.jar" ]
then
echo "nb.jar link exists, skipping"
else
echo "linking $JARNAME to nb.jar"
ln -s $JARNAME nb.jar
exit 0
fi
if [ ! -e "$JARNAME" ]
then
echo "$JARNAME does not exist, skipping"
exit 0
fi
echo "linking $JARNAME to nb.jar"
ln -s $JARNAME nb.jar
echo "linked $JARNAME to nb.jar, exiting"

View File

@ -0,0 +1,8 @@
package io.nosqlbench.nb;
/**
* This class is just a place holder. It holds a place.
* If only nexus understood aggregator module without src...
*/
public class PlaceHolder {
}