@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.
- package/.genx/package.json +3 -2
- package/.gitignore +1 -0
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
- package/server/build.gradle.kts +3 -0
- package/server/{{appName}}-app/src/main/genesis/cfg/genesis-system-definition.kts +3 -3
- package/server/{{appName}}-app/src/main/genesis/cfg/{{appName}}-processes.xml +4 -3
package/.genx/package.json
CHANGED
|
@@ -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
|
|
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
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
package/server/build.gradle.kts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
systemDefinition {
|
|
2
2
|
global {
|
|
3
3
|
item(name = "DbLayer", value = "SQL")
|
|
4
|
-
item(name = "
|
|
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>
|
|
50
|
-
<!-- <package>global.genesis.
|
|
51
|
-
<!-- <
|
|
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>-->
|