Skip to content

Commit

Permalink
Multipane (#52)
Browse files Browse the repository at this point in the history
* removed indent

* Updating getting-started to multipane

* Changing all full files to be in the code_column

* Trying blank subsections

* . as a subsection

* Trying to make a blank ssubsection

* Updates to multipane

* Adding linenums

* Adding linenums

* Removed 'to be published'

*  Moved linenums

* Updated sections and bolded

* Adding inline hotspots and cleaning up existing commands

* Updated multipane

* Updated multipane

* Removed code_command 'replace' and chnaged it to 'add' the feature line for server.xml

* One line hotspotting and changed how to add the logging element

* updated new line

* Updated mentions of elements

* Updated multipane

* Update Readme, quiet travis long, update failsafe plugin

* Minor README update for hotspots

* Updating hotspot and removing feature version

* Updating formatting

* Updating hotspots

* Updating hotspots

* Adding multiple files to section

* Minor README changes

* Updating hotspots

* Updating hotspots

* Revert "Minor README changes"

This reverts commit e5ab8ff.

* Revert "Revert "Minor README changes""

This reverts commit 9ab3ef0.

* Updating hotspots

* Formatting README

* Add guide author

* add file=1

* Updating plugins

* Bolding code commands

* Adding role=command

* Fixing spacing in server.xml and typo in README

* Fixing spacing in server.xml

* Server.xml formatting in start

* Server.xml formatting in start

* Removed finish.adoc include from README.adoc

* Adding docker commands to travis

* Updating dependency order

* JDK 11 pom update

* jdk update

* Updated edit files to replace files and added tags to server.xml

* Updated README

* Updated README

* Updated README

* Updated README

* Updated rEADME

* Updated README

* Updated README with [hotspot] changes

* Updated README with link in new tab changes

* Updated README with link in new tab changes

* Updated README

* Addressed issue #57

* Change the guide attribution to point to master
  • Loading branch information
justineechen authored and gkwan-ibm committed Feb 27, 2019
1 parent 288b427 commit 33f122b
Show file tree
Hide file tree
Showing 6 changed files with 349 additions and 261 deletions.
11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
language: java
services:
- docker
before_script:
- unset _JAVA_OPTIONS
- cd finish
script:
- mvn clean install
- serverName=$(target/liberty/wlp/bin/server list | cut -d '.' -f2| tr -d '\n');
- mvn -q clean install
- mvn -q clean package -P docker-image
- docker run -d --name gettingstarted-app -p 9080:9080 openliberty-getting-started:1.0-SNAPSHOT
- sleep 60
- status="$(curl --write-out "%{http_code}\n" --silent --output /dev/null "http://localhost:9080/system/properties")"; if [ "$status" == "200" ]; then echo ENDPOINT OK; else echo "$status"; echo ENDPOINT NOT OK; exit 1; fi;
- docker stop gettingstarted-app && docker rm gettingstarted-app
- serverName=$(target/liberty/wlp/bin/server list | cut -d '.' -f2| tr -d '\n');
- build=$(grep "Open Liberty" target/liberty/wlp/usr/servers/"$serverName"/logs/console.log
| cut -d' ' -f5 | cut -d')' -f1 ); release=$( echo "$build" | cut -d'/' -f1); number=$(
echo "$build" | cut -d'/' -f2); ol_jv=$(grep -i "on java" target/liberty/wlp/usr/servers/"$serverName"/logs/console.log);
Expand Down
Loading

0 comments on commit 33f122b

Please sign in to comment.