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
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,4 @@ private String constructHibernateToolsPluginLine() {
+ System.getenv("HIBERNATE_TOOLS_VERSION") + "'";
}

private String constructH2DatabaseDependencyLine() {
return " implementation 'com.h2database:h2:" + System.getenv("H2_VERSION") + "'";
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,4 @@ private String constructHibernateToolsPluginLine() {
+ System.getenv("HIBERNATE_TOOLS_VERSION") + "'";
}

private String constructH2DatabaseDependencyLine() {
return " implementation 'com.h2database:h2:" + System.getenv("H2_VERSION") + "'";
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,4 @@ private String constructHibernateToolsPluginLine() {
+ System.getenv("HIBERNATE_TOOLS_VERSION") + "'";
}

private String constructH2DatabaseDependencyLine() {
return " implementation 'com.h2database:h2:" + System.getenv("H2_VERSION") + "'";
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,4 @@ private String constructHibernateToolsPluginLine() {
+ System.getenv("HIBERNATE_TOOLS_VERSION") + "'";
}

private String constructH2DatabaseDependencyLine() {
return " implementation 'com.h2database:h2:" + System.getenv("H2_VERSION") + "'";
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,4 @@ private String constructHibernateToolsPluginLine() {
+ System.getenv("HIBERNATE_TOOLS_VERSION") + "'";
}

private String constructH2DatabaseDependencyLine() {
return " implementation 'com.h2database:h2:" + System.getenv("H2_VERSION") + "'";
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@ public class TestTemplate {
protected File getDatabaseFile() { return databaseFile; }
protected void setDatabaseFile(File f) { databaseFile = f; }

protected String constructH2DatabaseDependencyLine() {
return " implementation 'com.h2database:h2:" + System.getenv("H2_VERSION") + "'";
}

}