From b2395aa0000d00515e1e0b0ce0e1bcba1ba4a760 Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Sat, 27 Apr 2024 20:25:43 +0200 Subject: [PATCH 01/11] Update planned work issue template --- .github/ISSUE_TEMPLATE/planned_work.md | 76 ++++++++++++++++++-------- 1 file changed, 52 insertions(+), 24 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/planned_work.md b/.github/ISSUE_TEMPLATE/planned_work.md index 944d576e..e3f53fe6 100644 --- a/.github/ISSUE_TEMPLATE/planned_work.md +++ b/.github/ISSUE_TEMPLATE/planned_work.md @@ -1,24 +1,52 @@ ---- -name: Planned work -about: Document some planned work -title: "[Planned Work] " -labels: Enhancement, Feature -assignees: '' - ---- - -## Summary - -We need to ... - -## Overview - -It should be achieved by ... - -## Acceptance Criteria - - - It should work like this ... - -### Additional Notes - - - Don't forget to ... +name: Planned Work +description: Documented work that was planned ahead +title: "[Planned] " +labels: ["Enhancement", "Feature"] +assignees: [] + +body: + - type: markdown + attributes: + value: "## Summary" + - type: textarea + id: summary + attributes: + label: "Provide a brief summary of the planned work" + description: "Summarize the key points of the planned work here" + placeholder: "Implement a new feature to improve user interface scalability…" + validations: + required: true + + - type: markdown + attributes: + value: "### Overview" + - type: textarea + id: overview + attributes: + label: "Detailed overview" + description: "Describe in detail how this work should be achieved" + placeholder: "Outline the approach and methods to be used…" + validations: + required: true + + - type: markdown + attributes: + value: "### Acceptance Criteria" + - type: textarea + id: acceptance-criteria + attributes: + label: "List the acceptance criteria" + description: "Specify what criteria must be met for this work to be considered complete" + placeholder: "- Criterion 1\n- Criterion 2\n- Criterion 3\n…" + validations: + required: true + + - type: markdown + attributes: + value: "#### Additional Notes" + - type: textarea + id: additional-notes + attributes: + label: "Include any additional notes (optional)" + description: "Any other comments or important information not captured above" + placeholder: "Notes on dependencies, possible issues, etc." From 8781b82fc578e7bde20504519d3457feeab69b09 Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Sat, 27 Apr 2024 20:30:03 +0200 Subject: [PATCH 02/11] Convert planned work template to YAML --- .../ISSUE_TEMPLATE/{planned_work.md => planned_work.yaml} | 1 - .vscode/settings.json | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) rename .github/ISSUE_TEMPLATE/{planned_work.md => planned_work.yaml} (99%) create mode 100644 .vscode/settings.json diff --git a/.github/ISSUE_TEMPLATE/planned_work.md b/.github/ISSUE_TEMPLATE/planned_work.yaml similarity index 99% rename from .github/ISSUE_TEMPLATE/planned_work.md rename to .github/ISSUE_TEMPLATE/planned_work.yaml index e3f53fe6..bf67aab7 100644 --- a/.github/ISSUE_TEMPLATE/planned_work.md +++ b/.github/ISSUE_TEMPLATE/planned_work.yaml @@ -2,7 +2,6 @@ name: Planned Work description: Documented work that was planned ahead title: "[Planned] " labels: ["Enhancement", "Feature"] -assignees: [] body: - type: markdown diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..e11c735d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "githubPullRequests.ignoredPullRequestBranches": [ + "main" + ] +} \ No newline at end of file From ab389ef488a549c612d8498bb943ca5a93c7c398 Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Sat, 27 Apr 2024 20:31:18 +0200 Subject: [PATCH 03/11] Update planned_work.yaml --- .github/ISSUE_TEMPLATE/planned_work.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/planned_work.yaml b/.github/ISSUE_TEMPLATE/planned_work.yaml index bf67aab7..345375d9 100644 --- a/.github/ISSUE_TEMPLATE/planned_work.yaml +++ b/.github/ISSUE_TEMPLATE/planned_work.yaml @@ -1,6 +1,6 @@ name: Planned Work description: Documented work that was planned ahead -title: "[Planned] " +title: "[Planned] Title Here" labels: ["Enhancement", "Feature"] body: From 0b582a38a27b4b39532ff4e5ec9d525915bb5b77 Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Sat, 27 Apr 2024 20:46:43 +0200 Subject: [PATCH 04/11] Update bug report issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 38 -------------- .github/ISSUE_TEMPLATE/bug_report.yaml | 73 ++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 38 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 179dbf5c..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[Problem]" -labels: Bug -assignees: '' - ---- - -**Describe the bug** - -A clear and concise description of what the bug is. - -**To Reproduce** - -Steps to reproduce the behavior: -1. Go to '....' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** - -A clear and concise description of what you expected to happen. - -**Screenshots** - -If applicable, add screenshots to help explain your problem. - -**Environment (please complete the following information):** - - - OS: [e.g. Linux, Mac, Windows, iOS, Android...] - - Browser [e.g. Chrome, Safari] - - Service Version [e.g. 1.12.0] - -**Additional context** - -Add any other context about the problem. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 00000000..3bc95073 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,73 @@ +name: Bug report +description: Create a report to help us improve +title: "[Problem] Title Here" +labels: ["Bug"] + +body: + - type: markdown + attributes: + value: "## Describe the Bug" + - type: textarea + id: bug-description + attributes: + label: "Bug Description" + description: "A clear and concise description of what the bug is" + placeholder: "Detail the bug here. Include what happens." + validations: + required: true + + - type: markdown + attributes: + value: "### Environment" + - type: textarea + id: environment + attributes: + label: "Environment Details" + description: "Please complete the following information:" + placeholder: "- OS: [e.g., Linux, Mac, Windows, iOS, Android]\n- Browser: [e.g., Chrome, Safari]\n- Service Version: [e.g., 1.12.0]" + validations: + required: true + + - type: markdown + attributes: + value: "## Steps to Reproduce" + - type: textarea + id: reproduce-steps + attributes: + label: "Reproduction Steps" + description: "Steps to reproduce the behavior" + placeholder: "1. Go to '...'\n2. Click on '...'\n3. Scroll down to '...'\n4. See error" + validations: + required: true + + - type: markdown + attributes: + value: "## Expected Behavior" + - type: textarea + id: expected-behavior + attributes: + label: "Expected Behavior" + description: "A clear and concise description of what you expected to happen" + placeholder: "Describe what you expected to happen after following the steps above." + validations: + required: true + + - type: markdown + attributes: + value: "### Screenshots" + - type: textarea + id: screenshots + attributes: + label: "Upload Screenshots" + description: "If applicable, add screenshots to help explain your problem" + placeholder: "Attach screenshots or drag them here." + + - type: markdown + attributes: + value: "#### Additional Context" + - type: textarea + id: additional-context + attributes: + label: "Additional Context (optional)" + description: "Add any other context about the problem here" + placeholder: "Include any other information that might be helpful for diagnosing or fixing the problem." From bf39eda325288ff3c05e9dc4e99024ba7b2976ea Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Sat, 27 Apr 2024 21:15:25 +0200 Subject: [PATCH 05/11] Add a support request issue template --- .github/ISSUE_TEMPLATE/request_support.yaml | 30 +++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/request_support.yaml diff --git a/.github/ISSUE_TEMPLATE/request_support.yaml b/.github/ISSUE_TEMPLATE/request_support.yaml new file mode 100644 index 00000000..55043215 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/request_support.yaml @@ -0,0 +1,30 @@ +name: Support Request +description: Request support or ask questions about using the tools +title: "[Support] Title Here" +labels: ["Help!", "Question"] +assignees: [] + +body: + - type: markdown + attributes: + value: "## Description of the Issue" + - type: textarea + id: issue-description + attributes: + label: "Issue Description" + description: "Provide a detailed description of the issue or question" + placeholder: "Describe what you need help with in as much detail as possible" + validations: + required: true + + - type: markdown + attributes: + value: "### What You Have Tried" + - type: textarea + id: tried-solutions + attributes: + label: "Attempted Solutions" + description: "Describe what you have tried so far to resolve the issue" + placeholder: "List the steps you have taken to try to fix the issue on your own" + validations: + required: true From c9cda3dce44b09aef90ed697c686df3f05a9e84a Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Sat, 27 Apr 2024 21:18:16 +0200 Subject: [PATCH 06/11] Update feature request issue template --- .github/ISSUE_TEMPLATE/feature_request.md | 24 ---------- .github/ISSUE_TEMPLATE/feature_request.yaml | 49 +++++++++++++++++++++ 2 files changed, 49 insertions(+), 24 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index c1c168f0..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: "[Feature Request] " -labels: Enhancement, Feature, Question -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** - -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** - -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** - -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** - -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 00000000..f7c499f8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,49 @@ +name: Feature Request +description: Suggest an idea for this project +title: "[Request] " +labels: ["Enhancement", "Feature", "Question"] + +body: + - type: markdown + attributes: + value: "## Problem Related to the Feature Request" + - type: textarea + id: problem-description + attributes: + label: "Problem Description" + description: "Describe the problem that this feature request aims to solve" + placeholder: "Ex. I'm always frustrated when..." + validations: + required: true + + - type: markdown + attributes: + value: "### Desired Solution" + - type: textarea + id: desired-solution + attributes: + label: "Solution Description" + description: "A clear and concise description of what you want to happen" + placeholder: "Describe the feature you would like to see implemented" + validations: + required: true + + - type: markdown + attributes: + value: "### Alternatives Considered" + - type: textarea + id: alternative-solutions + attributes: + label: "Alternative Solutions" + description: "Describe any alternative solutions or features you've considered" + placeholder: "Detail any alternative solutions you have thought about" + + - type: markdown + attributes: + value: "#### Additional Context" + - type: textarea + id: additional-context + attributes: + label: "Additional Context (optional)" + description: "Provide any additional context or screenshots about the feature request" + placeholder: "Include any supplementary information or images that might help illustrate your feature request" From 1c592de147bf76dfb4809d73428c6d48e01d522e Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Sat, 27 Apr 2024 21:19:35 +0200 Subject: [PATCH 07/11] Update feature_request.yaml --- .github/ISSUE_TEMPLATE/feature_request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index f7c499f8..d6fecd2c 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -1,6 +1,6 @@ name: Feature Request description: Suggest an idea for this project -title: "[Request] " +title: "[Request] Title Here" labels: ["Enhancement", "Feature", "Question"] body: From 900385e058be5256e19d1404c9f197e1b1f8b1d8 Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Sun, 28 Apr 2024 15:08:18 +0200 Subject: [PATCH 08/11] Update issue templates (tags & titles) --- .github/ISSUE_TEMPLATE/bug_report.yaml | 4 ++-- .github/ISSUE_TEMPLATE/feature_request.yaml | 4 ++-- .github/ISSUE_TEMPLATE/planned_work.yaml | 4 ++-- .github/ISSUE_TEMPLATE/request_support.yaml | 5 ++--- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 3bc95073..b7678483 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -1,7 +1,7 @@ name: Bug report description: Create a report to help us improve -title: "[Problem] Title Here" -labels: ["Bug"] +title: "But Title Here" +labels: ["Help", "Bug"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index d6fecd2c..d9e36af3 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -1,7 +1,7 @@ name: Feature Request description: Suggest an idea for this project -title: "[Request] Title Here" -labels: ["Enhancement", "Feature", "Question"] +title: "Feature Request Title Here" +labels: ["Enhancement", "Feature", "Request"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/planned_work.yaml b/.github/ISSUE_TEMPLATE/planned_work.yaml index 345375d9..19ff28e9 100644 --- a/.github/ISSUE_TEMPLATE/planned_work.yaml +++ b/.github/ISSUE_TEMPLATE/planned_work.yaml @@ -1,7 +1,7 @@ name: Planned Work description: Documented work that was planned ahead -title: "[Planned] Title Here" -labels: ["Enhancement", "Feature"] +title: "Planned Work Title Here" +labels: ["Planned", "Enhancement", "Feature"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/request_support.yaml b/.github/ISSUE_TEMPLATE/request_support.yaml index 55043215..490a5c77 100644 --- a/.github/ISSUE_TEMPLATE/request_support.yaml +++ b/.github/ISSUE_TEMPLATE/request_support.yaml @@ -1,8 +1,7 @@ name: Support Request description: Request support or ask questions about using the tools -title: "[Support] Title Here" -labels: ["Help!", "Question"] -assignees: [] +title: "Support Request Title" +labels: ["Help", "Request"] body: - type: markdown From af2705f1c3feed5237b524dea6a6768f68f34f15 Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Fri, 18 Apr 2025 22:19:06 +0200 Subject: [PATCH 09/11] Update service URLs and docs --- LICENSE | 2 +- README.md | 20 +++++++++---------- .../static/docs/open-api/consumer.yaml | 8 ++++---- .../static/docs/open-api/creator.yaml | 14 ++++++------- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/LICENSE b/LICENSE index 4a3d6c42..abb56fb8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020, AppifyHub.com +Copyright (c) 2020, AppifyHub Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 0efdc4de..c024b51e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ ## About the project -This repository contains the **complete** codebase of the [AppifyHub](https://appifyhub.com)'s monolith backend service. +This repository contains the **complete** codebase of the [AppifyHub](https://www.appifyhub.com)'s monolith backend service. The service covers for the majority of everyday, user-facing features, such as: authentication, user management, email and messaging, access management, and other. @@ -23,20 +23,20 @@ See the rest of this document for a developer's overview and information on how This service runs as an API in two official places: - - [AppifyHub API](https://api.appifyhub.com) - - [_Staging_ AppifyHub API](http://staging.api.appifyhub.com) (no SSL) + - [AppifyHub API](https://api.cloud.appifyhub.com) (Live) + - [_Staging_ AppifyHub API](http://staging.api.cloud.appifyhub.com) (Pre-Live) The related API docs are located nearby too: - - [API Docs](https://api.appifyhub.com/docs/index.html) - - [_Staging_ API Docs](http://staging.api.appifyhub.com/docs/index.html) (no SSL) + - [API Docs](https://api.cloud.appifyhub.com/docs/index.html) (Live) + - [_Staging_ API Docs](http://staging.api.cloud.appifyhub.com/docs/index.html) (Pre-Live) The OpenAPI YAMLs are in the same place: - - [OpenAPI YAML for **Creators**](https://api.appifyhub.com/docs/open-api/creator.yaml) - - [OpenAPI YAML for **Consumers**](https://api.appifyhub.com/docs/open-api/consumer.yaml) - - [_Staging_ OpenAPI YAML for **Creators**](http://staging.api.appifyhub.com/docs/open-api/creator.yaml) (no SSL) - - [_Staging_ OpenAPI YAML for **Consumers**](http://staging.api.appifyhub.com/docs/open-api/consumer.yaml) (no SSL) + - [OpenAPI YAML for **Creators**](https://api.cloud.appifyhub.com/docs/open-api/creator.yaml) (Live) + - [OpenAPI YAML for **Consumers**](https://api.cloud.appifyhub.com/docs/open-api/consumer.yaml) (Live) + - [_Staging_ OpenAPI YAML for **Creators**](http://staging.api.cloud.appifyhub.com/docs/open-api/creator.yaml) (Pre-Live) + - [_Staging_ OpenAPI YAML for **Consumers**](http://staging.api.cloud.appifyhub.com/docs/open-api/consumer.yaml) (Pre-Live) ### AppifyHub SDK @@ -52,7 +52,7 @@ You can find the SDK and its documentation here: If you plan on contributing to this project in any way, please read and acknowledge the [Contributing guide](./CONTRIBUTING.md) first. -Please also take note of the [License](./LICENSE) and check the [Project Website](https://appifyhub.com) for general information. +Please also take note of the [License](./LICENSE) and check the [Project Website](https://www.appifyhub.com) for general information. ## Developer's Overview diff --git a/src/main/resources/static/docs/open-api/consumer.yaml b/src/main/resources/static/docs/open-api/consumer.yaml index cb9d5560..ef8f92a3 100644 --- a/src/main/resources/static/docs/open-api/consumer.yaml +++ b/src/main/resources/static/docs/open-api/consumer.yaml @@ -15,10 +15,10 @@ info: url: images/logo-text-white-small.png altText: Appify Hub Logo servers: - - url: https://api.appifyhub.com - description: Production environment - - url: http://staging.api.appifyhub.com - description: Staging environment + - url: https://api.cloud.appifyhub.com + description: Live environment + - url: http://staging.api.cloud.appifyhub.com + description: Pre-live environment paths: diff --git a/src/main/resources/static/docs/open-api/creator.yaml b/src/main/resources/static/docs/open-api/creator.yaml index ed34a3f7..177125e9 100644 --- a/src/main/resources/static/docs/open-api/creator.yaml +++ b/src/main/resources/static/docs/open-api/creator.yaml @@ -15,10 +15,10 @@ info: url: images/logo-text-white-small.png altText: Appify Hub Logo servers: - - url: https://api.appifyhub.com - description: Production environment - - url: http://staging.api.appifyhub.com - description: Staging environment + - url: https://api.cloud.appifyhub.com + description: Live environment + - url: http://staging.api.cloud.appifyhub.com + description: Pre-live environment paths: @@ -777,7 +777,7 @@ components: domain: type: string description: A verified domain - examples: [ "appifyhub.com" ] + examples: [ "www.appifyhub.com" ] sender_name: type: string description: The name of the default sender @@ -1259,13 +1259,13 @@ components: type: string format: uri description: The URL to this consumer project's logo - examples: [ "https://appifyhub.com/logo.png" ] + examples: [ "https://www.appifyhub.com/logo.png" ] ProjectWebsiteURL: type: string format: uri description: The URL to this consumer project's website - examples: [ "https://appifyhub.com" ] + examples: [ "https://wwww.appifyhub.com" ] ProjectLanguageTag: type: string From a569690cfdbfeab9bca55dbc253f2e0c7acfa6c1 Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Fri, 18 Apr 2025 22:26:01 +0200 Subject: [PATCH 10/11] Upgrade GH Actions cache --- .github/workflows/beta.yml | 2 +- .github/workflows/qa.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 741091e5..f1097c83 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -22,7 +22,7 @@ jobs: swap-size-gb: 10 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.gradle/caches diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index b0de6d81..d7ac592d 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -21,7 +21,7 @@ jobs: swap-size-gb: 10 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.gradle/caches diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b29b249a..ecd1a555 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: swap-size-gb: 10 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.gradle/caches From 23cba256bbc7b9a0a97d2d22211250142f7f250f Mon Sep 17 00:00:00 2001 From: Milos Marinkovic Date: Fri, 18 Apr 2025 22:19:42 +0200 Subject: [PATCH 11/11] Bump version --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index da88ccf1..da5b94db 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ group=com.appifyhub -version=1.2.2 +version=1.2.3 artifact=monolith org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m