Merge remote-tracking branch 'origin/jetty-9.3.x' into jetty-9.4.x
This commit is contained in:
commit
73a0cd6b06
|
@ -14,9 +14,7 @@
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
<bundle-symbolic-name>${project.groupId}.jmx.webapp.it</bundle-symbolic-name>
|
<bundle-symbolic-name>${project.groupId}.jmx.webapp.it</bundle-symbolic-name>
|
||||||
<scripts-dir>${project.basedir}/src/test/scripts</scripts-dir>
|
|
||||||
<test-base-dir>${project.build.directory}/test-base</test-base-dir>
|
<test-base-dir>${project.build.directory}/test-base</test-base-dir>
|
||||||
<test-home-dir>${project.build.directory}/test-home</test-home-dir>
|
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -80,35 +78,4 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<profiles>
|
|
||||||
<profile>
|
|
||||||
<id>it-windows</id>
|
|
||||||
<activation>
|
|
||||||
<os>
|
|
||||||
<family>Windows</family>
|
|
||||||
</os>
|
|
||||||
</activation>
|
|
||||||
<properties>
|
|
||||||
<run.command>cmd</run.command>
|
|
||||||
<run.command.xtra>/c</run.command.xtra>
|
|
||||||
<start.script>start-jetty.bat</start.script>
|
|
||||||
<stop.script>stop-jetty.bat</stop.script>
|
|
||||||
</properties>
|
|
||||||
</profile>
|
|
||||||
<profile>
|
|
||||||
<id>it-unix</id>
|
|
||||||
<activation>
|
|
||||||
<os>
|
|
||||||
<family>unix</family>
|
|
||||||
</os>
|
|
||||||
</activation>
|
|
||||||
<properties>
|
|
||||||
<run.command>sh</run.command>
|
|
||||||
<run.command.xtra>--</run.command.xtra>
|
|
||||||
<setup.script>setup-jetty.sh</setup.script>
|
|
||||||
<start.script>start-jetty.sh</start.script>
|
|
||||||
<stop.script>stop-jetty.sh</stop.script>
|
|
||||||
</properties>
|
|
||||||
</profile>
|
|
||||||
</profiles>
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
JAVA_HOME=$1
|
|
||||||
JETTY_HOME=$2
|
|
||||||
JETTY_BASE=$3
|
|
||||||
|
|
||||||
echo \${java.home} : $JAVA_HOME
|
|
||||||
echo \${jetty.home} : $JETTY_HOME
|
|
||||||
echo \${jetty.base} : $JETTY_BASE
|
|
||||||
|
|
||||||
cd "$JETTY_BASE"
|
|
||||||
|
|
||||||
"$JAVA_HOME/bin/java" -jar "$JETTY_HOME/start.jar" \
|
|
||||||
--approve-all-licenses \
|
|
||||||
--add-to-start=deploy,http,annotations,jmx,jmx-remote,logging
|
|
||||||
|
|
||||||
"$JAVA_HOME/bin/java" -jar "$JETTY_HOME/start.jar" \
|
|
||||||
--version
|
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
JAVA_HOME=$1
|
|
||||||
JETTY_HOME=$2
|
|
||||||
JETTY_BASE=$3
|
|
||||||
|
|
||||||
echo \${java.home} : $JAVA_HOME
|
|
||||||
echo \${jetty.home} : $JETTY_HOME
|
|
||||||
echo \${jetty.base} : $JETTY_BASE
|
|
||||||
|
|
||||||
cd "$JETTY_BASE"
|
|
||||||
|
|
||||||
"$JAVA_HOME/bin/java" -jar "$JETTY_HOME/start.jar" \
|
|
||||||
jetty.http.port=58080 \
|
|
||||||
STOP.PORT=58181 STOP.KEY=it
|
|
||||||
|
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
JAVA_HOME=$1
|
|
||||||
JETTY_HOME=$2
|
|
||||||
JETTY_BASE=$3
|
|
||||||
|
|
||||||
cd "$JETTY_BASE"
|
|
||||||
"$JAVA_HOME/bin/java" -jar "$JETTY_HOME/start.jar" \
|
|
||||||
--stop STOP.PORT=58181 STOP.KEY=it
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue