Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.6.1</version>

<configuration>
<filters>
Expand Down
3 changes: 3 additions & 0 deletions shade-test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Create the package. Skip tests since this is just for testing the contents of the jar. We've already run the tests in another step.
mvn package -DskipTests -Dmaven.javadoc.skip=true
if [ $? -ne 0 ]; then
exit 1
fi
# List everything in the shaded jar. Anything in com/datadog is good since that's either shaded or our own code.
# We intentionally avoid shading anything in META-INF in the pom.xml.
# And there are some native libraries in other directories that we don't shade so we only want to check for .class files.
Expand Down