@genesislcap/blank-app-seed 2.0.0 → 2.0.2

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.0",
4
+ "version": "2.0.2",
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
  }
@@ -30,7 +30,7 @@
30
30
  <package>global.genesis.eventhandler.pal</package>
31
31
  <script>testapp-eventhandler.kts</script>
32
32
  <description>Handles events</description>
33
- <classpath>testapp-messages*,testapp-eventhandler*</classpath>
33
+ <classpath>testapp-app*</classpath>
34
34
  <language>pal</language>
35
35
  </process>
36
36
  </processes>
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.0.1...v2.0.2) (2024-03-11)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * consolidator as gpal and interpolate variables in xml files DVOP-620 (#143) 5a33dff
9
+
10
+ ## [2.0.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v2.0.0...v2.0.1) (2024-03-11)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * add kotlin folder for kotlin scripts are recognised correctly by intellij [PLAT-1165](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/1165) (#141) 5d9cc3e
16
+
3
17
  ## [2.0.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v1.5.5...v2.0.0) (2024-03-07)
4
18
 
5
19
 
package/README.md CHANGED
@@ -44,11 +44,11 @@ If you need an introduction to the Genesis platform and its modules it's worth h
44
44
 
45
45
  ## Project Structure
46
46
 
47
- This project contains **server/jvm** and **client** directories which contain the server and client code respectively.
47
+ This project contains **server** and **client** directories which contain the server and client code respectively.
48
48
 
49
49
  ### Server
50
50
 
51
- The server code for this project can be found [here](./server/jvm/README.md).
51
+ The server code for this project can be found [here](./server/README.md).
52
52
  It is built using a DSL-like definition based on the Kotlin language: GPAL.
53
53
 
54
54
  ### Web Client
package/gradle.properties CHANGED
@@ -1,3 +1,4 @@
1
1
  kotlin.code.style=official
2
2
  org.gradle.jvmargs=-Xmx6g -Xss512k -XX:+HeapDumpOnOutOfMemoryError -XX:+UseG1GC -XX:+UseStringDeduplication -XX:ReservedCodeCacheSize=512m -Dkotlin.daemon.jvm.options=-Xmx2g -Dfile.encoding=UTF-8
3
- org.gradle.caching=true
3
+ org.gradle.caching=true
4
+ org.gradle.configuration-cache=true
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.0",
4
+ "version": "2.0.2",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"
@@ -1,5 +1,6 @@
1
1
  bundleGeneratedClasses=true
2
2
  org.gradle.jvmargs=-Xmx6g -Xss512k -XX:+HeapDumpOnOutOfMemoryError -XX:+UseG1GC -XX:+UseStringDeduplication -XX:ReservedCodeCacheSize=512m -Dkotlin.daemon.jvm.options=-Xmx2g -Dfile.encoding=UTF-8
3
+ org.gradle.configuration-cache=true
3
4
  enableDockerTasks=true
4
5
  dockerCompactProcesses=true
5
6
  genesisVersion={{ versions.GSF }}
@@ -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>-->