@genesislcap/blank-app-seed 2.0.2 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "2.0.2",
4
+ "version": "2.1.0",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
package/.gitignore CHANGED
@@ -42,6 +42,7 @@ target/
42
42
  client/bootstrapDone
43
43
  .husky/.gitignore
44
44
  build-cache/
45
+ server/h2/
45
46
 
46
47
  # Ignore Gradle GUI config
47
48
  gradle-app.setting
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.1.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.0.2...v2.1.0) (2024-03-11)
4
+
5
+
6
+ ### Features
7
+
8
+ * Make H2 the default DB in blank app seed([PSD-50](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/50)) (#142) 8bd473b
9
+
3
10
  ## [2.0.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.0.1...v2.0.2) (2024-03-11)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "2.0.2",
4
+ "version": "2.1.0",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"
@@ -7,6 +7,9 @@ plugins {
7
7
  subprojects {
8
8
  apply(plugin = "org.gradle.maven-publish")
9
9
 
10
+ dependencies {
11
+ implementation("com.h2database:h2:2.2.224")
12
+ }
10
13
  tasks {
11
14
  withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
12
15
  kotlinOptions {
@@ -1,11 +1,11 @@
1
1
  systemDefinition {
2
2
  global {
3
3
  item(name = "DbLayer", value = "SQL")
4
- item(name = "DbHost", value = "jdbc:postgresql://localhost:5432/?user=postgres&password=docker")
4
+ item(name = "DictionarySource", value = "FILE")
5
+ item(name = "DbHost", value = "jdbc:h2:file:./server/h2/test;DB_CLOSE_DELAY=-1;NON_KEYWORDS=VALUE,KEY;AUTO_SERVER=TRUE")
6
+ item(name = "DbQuotedIdentifiers", value = true)
5
7
  item(name = "DEPLOYED_PRODUCT", value = "{{appName}}")
6
8
  item(name = "MqLayer", value = env["MQ_LAYER", "ZeroMQ"])
7
-
8
- item(name = "DictionarySource", value = "DB")
9
9
  item(name = "AliasSource", value = "DB")
10
10
  item(name = "HookStateStore", value = "DB")
11
11
  item(name = "MetricsEnabled", value = "false")