Skip to content

Commit a2035bc

Browse files
authored
updated to CUBA 6.10; 0.4.0 release (#5)
1 parent cbcd354 commit a2035bc

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

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.4.0] - 2018-10-31
8+
9+
### Dependencies
10+
- CUBA 6.10.x
11+
712
## [0.3.2] - 2018-07-20
813

914
### Changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,12 @@ For cross cutting functionality, these soft references can be the solution here.
5151

5252
## Installation
5353

54-
1. `entity-soft-reference` is available in the [CUBA marketplace](https://www.cuba-platform.com/marketplace)
54+
1. `entity-soft-reference` is available in the [CUBA marketplace](https://www.cuba-platform.com/marketplace/soft-references-entities)
5555
2. Select a version of the add-on which is compatible with the platform version used in your project:
5656

5757
| Platform Version | Add-on Version |
5858
| ---------------- | -------------- |
59+
| 6.10.x | 0.4.x |
5960
| 6.9.x | 0.3.x |
6061
| 6.8.x | 0.1.x - 0.2.x |
6162

build.gradle

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

22
buildscript {
3-
ext.cubaVersion = '6.9.3'
3+
ext.cubaVersion = '6.10.2'
44
repositories {
55

66
maven {
@@ -43,7 +43,7 @@ apply(plugin: 'cuba')
4343
cuba {
4444
artifact {
4545
group = 'de.diedavids.cuba.entitysoftreference'
46-
version = "0.3.2"
46+
version = "0.4.0"
4747
isSnapshot = false
4848
}
4949
tomcat {
@@ -200,7 +200,13 @@ configure([globalModule, coreModule, guiModule, webModule]) {
200200
}
201201

202202
configure(globalModule) {
203-
task enhance(type: CubaEnhancing)
203+
entitiesEnhancing {
204+
main { enabled = true }
205+
test {
206+
enabled = true
207+
persistenceConfig = 'entitysoftreference-test-persistence.xml'
208+
}
209+
}
204210

205211
jar {
206212
manifest {
@@ -214,7 +220,13 @@ configure(globalModule) {
214220

215221
configure(coreModule) {
216222

217-
task enhanceTestModel(type: CubaTestEnhancing)
223+
entitiesEnhancing {
224+
main { enabled = true }
225+
test {
226+
enabled = true
227+
persistenceConfig = 'entitysoftreference-test-persistence.xml'
228+
}
229+
}
218230

219231
configurations {
220232
jdbc

modules/core/test-home/cuba/work/persistence.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
<property name="eclipselink.session-event-listener" value="com.haulmont.cuba.core.sys.persistence.EclipseLinkSessionEventListener"/>
6565
<property name="eclipselink.logging.logger" value="com.haulmont.cuba.core.sys.logging.EclipseLinkLog"/>
6666
<property name="eclipselink.cache.shared.default" value="false"/>
67+
<property name="eclipselink.flush-clear.cache" value="Merge"/>
6768
<property name="eclipselink.target-database" value="com.haulmont.cuba.core.sys.persistence.CubaHSQLPlatform"/>
6869
<property name="javax.persistence.validation.mode" value="NONE"/>
6970
<property name="eclipselink.cache.coordination.protocol" value="com.haulmont.cuba.core.sys.entitycache.EntityCacheTransportManager"/>

0 commit comments

Comments
 (0)