Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add styx load test script #18

Merged
merged 6 commits into from
Oct 26, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Improve distribution zip file:
- Add missing LICENSE.txt
- Add project version into base directory.
- Add platform name into the zip file name.
  • Loading branch information
Mikko Karjalainen committed Oct 19, 2017
commit 644489c1aa475e8e34c0e48b816df274262ec441
6 changes: 5 additions & 1 deletion distribution/assembly/artifact.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@
<format>tar.gz</format>
</formats>

<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory>styx-${project.version}</baseDirectory>

<!-- Include NOTICE and version txt -->
<files>
<file>
<source>${main.basedir}/NOTICE</source>
<filtered>true</filtered>
</file>
<file>
<source>${main.basedir}/LICENSE.txt</source>
<filtered>true</filtered>
</file>
<file>
<source>${basedir}/resources/styx-version.txt</source>
<filtered>true</filtered>
Expand Down
2 changes: 1 addition & 1 deletion distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


<properties>
<artifact.finalName>styx</artifact.finalName>
<artifact.finalName>styx-${project.version}-${netty-tcnative.classifier}</artifact.finalName>
<distribution.dir>${project.basedir}/target</distribution.dir>
<main.basedir>${project.parent.basedir}</main.basedir>
<skipCheckstyle>true</skipCheckstyle>
Expand Down