Skip to content

Commit

Permalink
IGNITE-17039 Fixed binary assembly of performance statistics module (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
NSAmelchev committed May 26, 2022
1 parent 08428c9 commit 21f9315
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/performance-statistics-ext/bin/build-report.sh
Expand Up @@ -33,7 +33,7 @@ JVM_OPTS="-Xms256m -Xmx32g"
#
# Define classpath
#
CP="${SCRIPT_DIR}/libs/*"
CP="${SCRIPT_DIR}/../libs/ignite-performance-statistics-ext/*"

#
# Set main class to run the tool.
Expand Down
2 changes: 1 addition & 1 deletion modules/performance-statistics-ext/bin/print-statistics.sh
Expand Up @@ -33,7 +33,7 @@ JVM_OPTS="-Xms32m -Xmx512m"
#
# Define classpath
#
CP="${SCRIPT_DIR}/libs/*"
CP="${SCRIPT_DIR}/../libs/ignite-performance-statistics-ext/*"

#
# Set main class to run the tool.
Expand Down
22 changes: 21 additions & 1 deletion modules/performance-statistics-ext/pom.xml
Expand Up @@ -99,6 +99,26 @@

<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<!-- Builds archive with UI resources. -->
<phase>compile</phase>
<configuration>
<target>
<zip destfile="${basedir}/target/report.zip" encoding="UTF-8">
<zipfileset dir="${basedir}/report"/>
</zip>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
Expand Down Expand Up @@ -129,7 +149,7 @@
<executions>
<execution>
<!-- Copy tool's dependencies. -->
<phase>install</phase>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
Expand Down

0 comments on commit 21f9315

Please sign in to comment.