Commit feb842c4 authored by Roland Weisleder's avatar Roland Weisleder Committed by Stephane Nicoll

Remove static Boot version from documentation

Closes gh-10774
parent 81e33dc8
...@@ -301,14 +301,14 @@ To declare dependencies a typical `ivy.xml` file will look something like this: ...@@ -301,14 +301,14 @@ To declare dependencies a typical `ivy.xml` file will look something like this:
A typical `build.xml` will look like this: A typical `build.xml` will look like this:
[source,xml,indent=0] [source,xml,indent=0,subs="verbatim,quotes,attributes"]
---- ----
<project <project
xmlns:ivy="antlib:org.apache.ivy.ant" xmlns:ivy="antlib:org.apache.ivy.ant"
xmlns:spring-boot="antlib:org.springframework.boot.ant" xmlns:spring-boot="antlib:org.springframework.boot.ant"
name="myapp" default="build"> name="myapp" default="build">
<property name="spring-boot.version" value="1.3.0.BUILD-SNAPSHOT" /> <property name="spring-boot.version" value="{spring-boot-version}" />
<target name="resolve" description="--> retrieve dependencies with ivy"> <target name="resolve" description="--> retrieve dependencies with ivy">
<ivy:retrieve pattern="lib/[conf]/[artifact]-[type]-[revision].[ext]" /> <ivy:retrieve pattern="lib/[conf]/[artifact]-[type]-[revision].[ext]" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment