Skip to content

Commit

Permalink
#1137 Download prepacked JRE from demo server instead
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandinand committed Feb 3, 2017
1 parent d917a2b commit 0bf21c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Binary file removed release/jre/jre.tar.gz
Binary file not shown.
6 changes: 4 additions & 2 deletions release/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,14 @@
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>untar-jre-copy-db</id>
<id>get-untar-jre-copy-db</id>
<phase>package</phase>
<configuration>
<tasks>
<echo message="Downloading JRE..." />
<get src="http://demo.geo-solutions.it/mapstore/jre.tar.gz" dest="${project.build.directory}/jre.tar.gz" />
<echo message="Untar JRE..." />
<gunzip src="jre/jre.tar.gz" dest="${project.build.directory}/jre.tar" />
<gunzip src="${project.build.directory}/jre.tar.gz" dest="${project.build.directory}/jre.tar" />
<untar src="${project.build.directory}/jre.tar" dest="${project.build.directory}/jre" />
<echo message="Copy Database..." />
<copyfile src="data/geostore.h2.db" dest="${project.build.directory}/geostore.h2.db" />
Expand Down

0 comments on commit 0bf21c4

Please sign in to comment.