-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from ozoneplatform/java-8
Upgrading to Grails 2.4.2
- Loading branch information
Showing
32 changed files
with
76 additions
and
545 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
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,12 +1,12 @@ | ||
#Grails Metadata file | ||
#Mon Aug 24 13:18:39 PDT 2015 | ||
#Wed Nov 04 14:34:48 EST 2015 | ||
app.base.majorVersion=7 | ||
app.base.prefix=OWF | ||
app.base.prevMajorVersion=7 | ||
app.base.prevVersion=7.16.1 | ||
app.base.sprint= | ||
app.base.version=7.17.0 | ||
app.grails.version=2.4.0 | ||
app.grails.version=2.4.2 | ||
app.name=owf-server | ||
app.notice=${app.notice.ga} | ||
app.notice.alpha=This is an Alpha version and has not been fully tested. Any data entered into this system may be lost. An upgrade to the final release will not be provided. To report any bugs, please send an email to [email protected]. | ||
|
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
databaseChangeLog = { | ||
|
||
changeSet(author: "owf", id: "7.17.0-1", context: "sampleData, 7.17.0-sampleData") { | ||
comment(text="insert new sample data") | ||
insert(tableName: "person_role") { | ||
column(name: "role_id", valueNumeric: "26") | ||
column(name: "person_authorities_id", valueNumeric: "2") | ||
} | ||
insert(tableName: "person_role") { | ||
column(name: "role_id", valueNumeric: "26") | ||
column(name: "person_authorities_id", valueNumeric: "3") | ||
} | ||
insert(tableName: "person_role") { | ||
column(name: "role_id", valueNumeric: "26") | ||
column(name: "person_authorities_id", valueNumeric: "28") | ||
} | ||
insert(tableName: "person_role") { | ||
column(name: "role_id", valueNumeric: "27") | ||
column(name: "person_authorities_id", valueNumeric: "1") | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.