- Instalación y primer arranque
descargar sbt launcher desde http://www.scala-sbt.org/
hay versión zip y msi
descargar sbt launcher desde http://www.scala-sbt.org/
hay versión zip y msi
descargar Gradle desde https://gradle.org
hay versión zip y también se puede instalar desde gestores como sdkman, homebrew y chocolatey
| <?xml version="1.0" encoding="UTF-8"?> | |
| <keyboard> | |
| <options> | |
| <!-- not yet implemented --> | |
| </options> | |
| <layout id="spanish keyboard"> | |
| <row> |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <jmeterTestPlan version="1.2" properties="3.2" jmeter="3.3 r1808647"> | |
| <hashTree> | |
| <TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="Pet Clinic" enabled="true"> | |
| <stringProp name="TestPlan.comments"></stringProp> | |
| <boolProp name="TestPlan.functional_mode">false</boolProp> | |
| <boolProp name="TestPlan.serialize_threadgroups">false</boolProp> | |
| <elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true"> | |
| <collectionProp name="Arguments.arguments"> | |
| <elementProp name="host" elementType="Argument"> |
| #!/bin/sh | |
| JAVA_DIR=$1 | |
| JAVA_BIN_DIR=$JAVA_DIR/bin | |
| DEST_DIR=/usr/bin | |
| ALT_LEVEL=$2 | |
| for f in `find $JAVA_BIN_DIR -maxdepth 1 -type f -executable` | |
| do | |
| NAME=`basename $f` |
| #!/bin/sh | |
| JAVA_DIR=$1 | |
| JAVA_BIN_DIR=$JAVA_DIR/bin | |
| DEST_DIR=/usr/bin | |
| for f in `find $JAVA_BIN_DIR -maxdepth 1 -type f -executable` | |
| do | |
| NAME=`basename $f` | |
| echo setting alternative for $DEST_DIR/$NAME to $JAVA_BIN_DIR/$NAME |
| #!/bin/sh | |
| JAVA_DIR=$1 | |
| JAVA_BIN_DIR=$JAVA_DIR/bin | |
| for f in `find $JAVA_BIN_DIR -maxdepth 1 -type f -executable` | |
| do | |
| NAME=`basename $f` | |
| echo removing alternative for $JAVA_BIN_DIR/$NAME | |
| update-alternatives --remove $NAME $JAVA_BIN_DIR/$NAME | |
| done |
| sudo chmod -R u+rwX,go+rX,go-w /usr/lib/jvm/jdk8u222-b10/ |
Everything DevOps subreddit -- https://www.reddit.com/r/devops/
Technology Conversations (Viktor Farcic's blog) -- https://technologyconversations.com/
The DevOps Toolkit (Victor Farcic YouTube channel) -- https://www.youtube.com/c/DevOpsToolkit
Dave Farley's blog -- https://www.davefarley.net/
Continuous Delivery (Dave Farley's YouTube channel) -- https://www.youtube.com/c/ContinuousDelivery