@genesislcap/blank-app-seed 2.0.1 → 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.1",
4
+ "version": "2.1.0",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
@@ -40,7 +40,8 @@
40
40
  ".md",
41
41
  ".properties",
42
42
  ".html",
43
- ".gitignore"
43
+ ".gitignore",
44
+ ".xml"
44
45
  ]
45
46
  }
46
47
  }
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,19 @@
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
+
10
+ ## [2.0.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.0.1...v2.0.2) (2024-03-11)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * consolidator as gpal and interpolate variables in xml files DVOP-620 (#143) 5a33dff
16
+
3
17
  ## [2.0.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.0.0...v2.0.1) (2024-03-11)
4
18
 
5
19
 
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.1",
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")
@@ -46,10 +46,11 @@
46
46
  <!-- <groupId>{{upperCase appName}}</groupId>-->
47
47
  <!-- <start>true</start>-->
48
48
  <!-- <options>-Xmx256m -DRedirectStreamsToLog=true -DXSD_VALIDATE=false</options>-->
49
- <!-- <module>consolidator2</module>-->
50
- <!-- <package>global.genesis.consolidator2</package>-->
51
- <!-- <config>{{appName}}-consolidator2.xml</config>-->
49
+ <!-- <module>genesis-pal-consolidator</module>-->
50
+ <!-- <package>global.genesis.pal.consolidator</package>-->
51
+ <!-- <script>{{appName}}-consolidator.kts</script>-->
52
52
  <!-- <loggingLevel>INFO,DATADUMP_OFF</loggingLevel>-->
53
+ <!-- <language>pal</language>-->
53
54
  <!-- </process>-->
54
55
  <!-- <process name="{{upperCase appName}}_STREAMER">-->
55
56
  <!-- <groupId>{{upperCase appName}}</groupId>-->