Skip to content

Commit

Permalink
finalizing net release - support of britli encoded responses
Browse files Browse the repository at this point in the history
  • Loading branch information
tkohegyi committed Jul 27, 2021
1 parent a6e8ece commit b169f11
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ along with Wilma. If not, see <http://www.gnu.org/licenses/>.
===========================================================================*/

// Common local repository info
ext.wilmaVersion=2.1
ext.wilmaVersion=2.2

group = 'com.epam.wilma'
apply plugin: 'idea'
Expand Down
8 changes: 4 additions & 4 deletions config/docker/Dockerfile-Wilma
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ RUN \
apt-get install -y openjdk-11-jre && \
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/* && \
wget https://github.com/epam/Wilma/releases/download/V2.1.460/wilma-application-2.1.460.zip && \
unzip wilma-application-2.1.460.zip && \
mv wilma-2.1.460.jar wilma.jar && \
rm -f wilma-application-2.1.460.zip
wget https://github.com/epam/Wilma/releases/download/V2.2.461/wilma-application-2.2.461.zip && \
unzip wilma-application-2.2.461.zip && \
mv wilma-2.2.461.jar wilma.jar && \
rm -f wilma-application-2.2.461.zip

COPY start_wilma.sh /data/
RUN \
Expand Down
8 changes: 4 additions & 4 deletions config/docker/Dockerfile-Wilma_and_Wilma_Message_Search
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ RUN \
apt-get upgrade -y && \
apt-get install -y openjdk-11-jdk && \
rm -rf /var/libs/apt/lists/* && \
wget https://github.com/epam/Wilma/releases/download/V2.1.460/wilma-message-search-2.1.460.zip && \
unzip -o wilma-message-search-2.1.460.zip && \
mv wilma-message-search-2.1.460.jar wilma-message-search.jar && \
rm -f wilma-message-search-2.1.460.zip
wget https://github.com/epam/Wilma/releases/download/V2.2.461/wilma-message-search-2.2.461.zip && \
unzip -o wilma-message-search-2.2.461.zip && \
mv wilma-message-search-2.2.461.jar wilma-message-search.jar && \
rm -f wilma-message-search-2.2.461.zip

COPY start_wilma_and_message_search.sh /data/
RUN \
Expand Down
2 changes: 1 addition & 1 deletion config/docker/start_wilma.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
WILMA_BUILD=wilma.jar
#WILMA_CONFIGURATION is an external environment variable, usually: wilma.conf.properties
#WILMA_MX_SIZE is an external environment variable, for example: -Xmx8G
#WILMA_KEPYSTORE is an external environment variable, for example: -Djavax.net.ssl.keyStore=certificate/your.jks
#WILMA_KEYSTORE is an external environment variable, for example: -Djavax.net.ssl.keyStore=certificate/your.jks
#WILMA_KEYSTORE_PASSWORD is an external environment variable, example: -Djavax.net.ssl.keyStorePassword=password_for_your_jks
#WILMA_JMX_PORT - Wilma JMX port, if empty, no JMX used, otherwise the JMX port is fully opened

Expand Down
2 changes: 1 addition & 1 deletion config/docker/start_wilma_and_message_search.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
WILMA_BUILD=wilma.jar
#WILMA_CONFIGURATION is an external environment variable, usually: wilma.conf.properties
#WILMA_MX_SIZE is an external environment variable, for example -Xmx8G
#WILMA_KESYTORE is an external environment variable, for example: -Djavax.net.ssl.keyStore=certificate/your.jks
#WILMA_KEYSTORE is an external environment variable, for example: -Djavax.net.ssl.keyStore=certificate/your.jks
#WILMA_KEYSTORE_PASSWORD is an external environment variable, for example: -Djavax.net.ssl.keyStorePassword=password_for_your_jks
#WILMA_JMX_PORT - Wilma JMX port, if empty, no JMX used, otherwise the JMX port is fully opened

Expand Down

1 comment on commit b169f11

@tkohegyi
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

support of brotli - not britli as it was in the commit message

Please sign in to comment.