-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from mendix/rto/fix_readme
RTO - Fix readme
- Loading branch information
Showing
1 changed file
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,29 @@ | ||
#### Notes | ||
# Community Commons module | ||
|
||
Add reusable Java methods that can be called from microflows and custom Java actions to bring functionality for working with dates, batches, strings, files, configurations, etc. | ||
|
||
In version 7.2.0 of this module, we introduced a new way of dependency management using a Gradle build file. Unfortunately, this does not mean that obsolete JARs are automatically deleted from your apps' userlib folders when you import this module into your app model. | ||
|
||
The Community Commons container project contains a variety of predesigned unit tests. To use these tests, download the Unit Testing module from the Mendix Marketplace and run `gradle copyAllToUserlib`. This module has a dependency on the Object Handling module, so that module should also be imported to your app if you want to run the tests. | ||
|
||
Please see [Community Commons Function Library](https://docs.mendix.com/appstore/modules/community-commons-function-library) in the Mendix documentation for details. | ||
|
||
## Mendix marketplace | ||
https://marketplace.mendix.com/link/component/170 | ||
|
||
#### To publish the module to Appstore | ||
## To publish the module to Appstore | ||
|
||
###### Step 1: Update the required properties | ||
#### Step 1: Update the required properties | ||
1. `marketplace/release-notes`: (mandatory) Add your release notes txt with the file name as the version number you mentioned in the `gradle.properties` (Example: 2.1.2.txt) | ||
2. `marketplace/decription.html`: (optional) Update the description of the module | ||
3. `marketplace/documentation.html`: (optional) Update the documentation of the module | ||
|
||
###### Step 2: Publish the module | ||
#### Step 2: Publish the module | ||
Release to the Marketplace with the following command: | ||
``` | ||
gradle release [email protected] -PmarketplacePassword=MyMarketPlacePassword | ||
``` | ||
|
||
#### References: | ||
## References: | ||
1. [Gradle publish marketplace module plugin](https://gitlab.rnd.mendix.com/runtime/gradle-mx-publish-module-plugin) | ||
|