-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HBX-2963 Use maven-injection-plugin to set the version string in the …
…org.hibernate.tool.api.version.Version
- Loading branch information
1 parent
0584bc4
commit 552dbe2
Showing
2 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
orm/src/main/java/org/hibernate/tool/api/version/Version.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
package org.hibernate.tool.api.version; | ||
|
||
public interface Version { | ||
|
||
final static String CURRENT_VERSION = "7.0.0-SNAPSHOT"; | ||
|
||
// An actual version is set by the `maven-injection-plugin` during the build time. | ||
final static String CURRENT_VERSION = "UNKNOWN"; | ||
|
||
} |