diff --git a/_includes/downloads.html b/_includes/downloads.html index 84bf23f3..9c62ac79 100644 --- a/_includes/downloads.html +++ b/_includes/downloads.html @@ -1,52 +1,88 @@ -
- Add the following to your project's - pom.xml dependencies: -
+Add the following to your project's pom.xml dependencies:
{% highlight xml %}- Then follow the next steps for - JUnit 5+ - or - plain Java. -
-- Add the following to your project's - build.gradle: -
-{% highlight groovy %} testImplementation "org.wiremock:wiremock:{{ -site.wiremock_version }}" {% endhighlight %} -- Then follow the next steps for - JUnit 5+ - or - plain Java. -
-- Add the following to your project's - build.gradle.kts: -
-{% highlight kotlin %} testImplementation("org.wiremock:wiremock:{{ -site.wiremock_version }}") {% endhighlight %} -- Then follow the next steps for - JUnit 5+ - or - plain Java. -
-- Add the following to your project’s build.sbt: -
-{% highlight scala %} libraryDependencies += "org.wiremock" % -"wiremock" % "{{ site.wiremock_version }}" % Test {% endhighlight %} -- Download the - latest standalone JAR - then run the following in a terminal: -
-{% highlight bash %} java -jar wiremock-standalone-{{ -site.wiremock_version }}.jar {% endhighlight %} -- Learn more in the - running standalone guide. -
+Then follow the next steps for JUnit 5+ or plain Java.
+Add the following to your project's build.gradle:
+{% highlight groovy %} +testImplementation "org.wiremock:wiremock:{{ site.wiremock_version }}" +{% endhighlight %} +Then follow the next steps for JUnit 5+ or plain Java.
+Add the following to your project's build.gradle.kts:
+{% highlight kotlin %} +testImplementation("org.wiremock:wiremock:{{ site.wiremock_version }}") +{% endhighlight %} +Then follow the next steps for JUnit 5+ or plain Java.
+Add the following to your project’s build.sbt:
+{% highlight scala %} +libraryDependencies += + "org.wiremock" % "wiremock" % "{{ site.wiremock_version }}" % Test +{% endhighlight %} ++ Download the latest standalone JAR + then run the following in a terminal: +
+{% highlight bash %} +java -jar wiremock-standalone-{{ site.wiremock_version }}.jar +{% endhighlight %} +Learn more in the running standalone guide.
+Run the following in a terminal:
+{% highlight bash %} +docker run -it --rm \ + -p 8080:8080 \ + --name wiremock \ + wiremock/wiremock:{{ site.wiremock_version }} +{% endhighlight %} +Learn more in the Docker guide.
+Run the following in a terminal:
-{% highlight bash %} docker run -it --rm \ -p 8080:8080 \ --name -wiremock \ wiremock/wiremock:{{ site.wiremock_version }} {% -endhighlight %} -- Learn more in the - Docker guide. -