Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ant/docs/5-minute-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ for the purpose of this short tutorial.
```xml
<project xmlns:ivy="antlib:org.apache.ivy.ant">

<property name="hibernate.tools.version" value="the-hibernate-tools-version-to-use, e.g. 7.0.0.Final"/>
<property name="hibernate.tools.version" value="the-hibernate-tools-version-to-use, e.g. 7.0.3.Final"/>
<property name="h2.version" value="the-h2-version-to-use, e.g. 2.3.232"/>

<ivy:cachepath organisation="org.hibernate.tool" module="hibernate-tools-ant" revision="${hibernate.tools.version}"
Expand Down
2 changes: 1 addition & 1 deletion ant/docs/examples/common/included.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-->
<project name="common" xmlns:ivy="antlib:org.apache.ivy.ant">

<property name="hibernate-tools.version" value="7.0.0.CR1"/>
<property name="hibernate-tools.version" value="7.0.3.Final"/>
<property name="javaee-api.version" value="8.0.1"/>
<property name="jdbc-driver.org" value="com.h2database"/>
<property name="jdbc-driver.module" value="h2"/>
Expand Down
2 changes: 1 addition & 1 deletion ant/docs/reference-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ file. In addition, you will need to define properties (or replace the variables)
the jdbc driver and for the version information. See an example in the snippet below:

```xml
<property name="hibernate-tools.version" value="7.0.0.Final"/>
<property name="hibernate-tools.version" value="7.0.3.Final"/>
<property name="jdbc-driver.org" value="com.h2database"/>
<property name="jdbc-driver.module" value="h2"/>
<property name="jdbc-driver.version" value="2.3.232"/>
Expand Down