Skip to content

Commit

Permalink
0.7.0 release (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariodavid authored Oct 30, 2018
1 parent 2e2beec commit 8016b66
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ out
test-run
.DS_Store
test-home
dataSources
dataSources
.idea
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.6.0] - Unreleased
## [0.7.0] - 2018-10-30

### Dependencies
- CUBA 6.10.x

## [0.6.0] - 2018-09-16

### Added
- new UniquePolicy option: Abort. Will abort the complete import process immediately (#122)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Table of Contents

| Platform Version | Add-on Version |
| ---------------- | -------------- |
| 6.10.x | 0.7.x |
| 6.9.x | 0.5.x - 0.6.x |
| 6.8.x | 0.1.x - 0.4.x |

Expand Down
28 changes: 22 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
buildscript {
ext.cubaVersion = '6.9.5'
ext.cubaVersion = '6.10.2'
repositories {

mavenLocal()
maven {
url 'https://repo.cuba-platform.com/content/groups/work'
credentials {
Expand Down Expand Up @@ -46,8 +47,8 @@ apply(plugin: 'cuba')
cuba {
artifact {
group = 'de.diedavids.cuba.dataimport'
version = "0.6.1"
isSnapshot = true
version = "0.7.0"
isSnapshot = false
}
tomcat {
dir = "$project.rootDir/deploy/tomcat"
Expand Down Expand Up @@ -99,7 +100,7 @@ subprojects {

dependencies {
appComponent("com.haulmont.cuba:cuba-global:$cubaVersion")
appComponent("de.balvi.cuba.declarativecontrollers:declarativecontrollers-global:0.6.0")
appComponent("de.balvi.cuba.declarativecontrollers:declarativecontrollers-global:0.7.0")

}

Expand Down Expand Up @@ -204,7 +205,15 @@ configure([globalModule, coreModule, guiModule, webModule]) {
}

configure(globalModule) {
task enhance(type: CubaEnhancing)
entitiesEnhancing {
main { enabled = true }
test {
enabled = true
persistenceConfig = 'dataimport-test-persistence.xml'
}

}


dependencies {
compile('org.apache.poi:poi-ooxml:3.17')
Expand All @@ -223,7 +232,14 @@ configure(globalModule) {

configure(coreModule) {

task enhanceTestModel(type: CubaTestEnhancing)
entitiesEnhancing {
main { enabled = true }
test {
enabled = true
persistenceConfig = 'dataimport-test-persistence.xml'
}

}

configurations {
jdbc
Expand Down

0 comments on commit 8016b66

Please sign in to comment.