Skip to content

Commit 68e9b8d

Browse files
authored
Merge pull request #11 from mariodavid/cuba-6-10-support
0.7.0 - CUBA 6.10 support
2 parents 5e0db6e + 7834e5d commit 68e9b8d

4 files changed

Lines changed: 12 additions & 19 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.7.0] - 24.10.2018
8+
9+
### Dependencies
10+
- CUBA 6.9.x
11+
712
## [0.6.0] - 05.06.2018
813

914
### Dependencies

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ CUBA component that allows to write generic features for a Controller and use th
1414

1515
| Platform Version | Add-on Version |
1616
| ---------------- | -------------- |
17+
| 6.10.x | 0.7.x |
1718
| 6.9.x | 0.6.x |
1819
| 6.8.x | 0.5.x |
1920
| 6.7.x | 0.4.x |

build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
buildscript {
3-
ext.cubaVersion = '6.9.0'
3+
ext.cubaVersion = '6.10.2'
44
repositories {
55
maven {
66
url 'https://repo.cuba-platform.com/content/groups/work'
@@ -33,7 +33,7 @@ apply(plugin: 'cuba')
3333
cuba {
3434
artifact {
3535
group = 'de.balvi.cuba.declarativecontrollers'
36-
version = '0.6.0'
36+
version = "0.7.0"
3737
isSnapshot = false
3838
}
3939
tomcat {
@@ -145,7 +145,9 @@ configure([globalModule, coreModule, guiModule, webModule]) {
145145

146146
}
147147
configure(globalModule) {
148-
task enhance(type: CubaEnhancing)
148+
entitiesEnhancing {
149+
main { enabled = true }
150+
}
149151

150152
jar {
151153
manifest {
Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1 @@
1-
-- begin DBCDC_CUSTOMER
2-
create table DBCDC_CUSTOMER (
3-
ID varchar(36) not null,
4-
VERSION integer not null,
5-
CREATE_TS timestamp,
6-
CREATED_BY varchar(50),
7-
UPDATE_TS timestamp,
8-
UPDATED_BY varchar(50),
9-
DELETE_TS timestamp,
10-
DELETED_BY varchar(50),
11-
--
12-
NAME varchar(255),
13-
--
14-
primary key (ID)
15-
)^
16-
-- end DBCDC_CUSTOMER
1+

0 commit comments

Comments
 (0)