Skip to content

Commit d6aaf9b

Browse files
committed
4.0.0 release
1 parent 16e9c7a commit d6aaf9b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

DbReverseEngineerGrailsPlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* limitations under the License.
1414
*/
1515
class DbReverseEngineerGrailsPlugin {
16-
String version = '0.5.1'
16+
String version = '4.0.0'
1717
String grailsVersion = '2.3.0 > *'
1818
String author = 'Burt Beckwith'
1919
String authorEmail = '[email protected]'

application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
app.grails.version=2.4.5
1+
app.grails.version=2.5.1

src/docs/guide/introduction.gdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The DB Reverse Engineering plugin reads database table information using JDBC and uses the schema data to create domain classes. This is a complex problem and the plugin is unlikely to get things 100% correct. But it should save you a lot of work and hopefully not require too much tweaking after the domain classes are generated.
22

3-
The 3.x.x versions of the plugin work with Hibernate 3. If you're using Hibernate 4, use the latest version 4.x.x of the plugin.
3+
The 4.x.x versions of the plugin work with Hibernate 4. If you're using Hibernate 3, use the latest version 3.x.x of the plugin.
44

55
The plugin uses the [Hibernate Tools|http://hibernate.org/tools/] library, with custom code to generate GORM domain classes instead of Java POJOs.

src/docs/guide/tutorial.gdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ h4. 2. Install the plugin by adding a dependency in BuildConfig.groovy:
1111
{code}
1212
plugins {
1313
...
14-
compile ':db-reverse-engineer:3.0.0'
14+
compile ':db-reverse-engineer:4.0.0'
1515
...
1616
}
1717
{code}

0 commit comments

Comments
 (0)