Open SRP Client is now made up of various maven published aar libraries which are then included in a project's build to aggregate the various functionality it offers.

These modules/libraries are:

Uploading to Maven

All the above projects have the same structure as far as configuration.

To upload files to maven,

          

     fig.1: example for opensrp client core

         

     fig.2: example of gradle.properties file global setting

                ./gradlew :<module name>:uploadArchives -PmavenLocal=true    (or just ./gradlew :<module name>:uploadArchives)

             To publish to Maven Central run the command

                ./gradlew :<module name>:uploadArchives -PmavenLocal=false


For example to publish to Maven Local for the android-json-form-wizard library, run the following command in the root of the project

./gradlew :android-json-form-wizard:uploadArchives -PmavenLocal=true

Viewing artifacts Maven

To see if the upload was successful you can visit: https://oss.sonatype.org/content/groups/public/org/smartregister/

Using/Including the artifacts in a project

In the projects , gradle.build file, use the following syntax to include the aar and its corresponding dependencies.

e.g. To use the client core aar artifact

    compile('org.smartregister:opensrp-client-core:1.0.0-SNAPSHOT@aar') {
transitive = true
}
NB: Remember to include transitive=true inorder for the aar dependencies to be included too

Uploading the Release Artifacts to Maven

For Release versions(after the Snapshot is stable and complete), the files must be signed before publishing to maven. This requires access to the PGP signing credentials as created for the project.

         

     fig.3: example of gradle.properties file global setting with the signing credentials

         

          fig.4: example of local gradle.properties file with the Release Versioning updated

After the release is uploaded to firstly goes to the staging environment on Nexus. To flag the deployment for release so that it's pushed to and is available on Maven Central, you need to login in the nexus interface(Repository Manager) using your sonatypeUsername and sonatypePassword and activate the release from there. Click here for the repository manager link.

Instructions on how to do this can be found here

Versioning Artifacts

Once you have created and tested and artifact on MavenLocal and it works correctly, Its time to upload it to the repo. Step one would be to check the existing latest version for that artifact.

Snapshot Versions

All artifacts for opensrp can be found under https://oss.sonatype.org/content/groups/public/org/smartregister/

e.g for the growth monitoring module

https://oss.sonatype.org/content/groups/public/org/smartregister/opensrp-client-growth-monitoring/

Using the MAJOR.MINOR.BUILD system for versioning, when you update the gradle.properties you increment the BUILD  value by one. e.g. if the last snapshot for Growth Monitoring was 1.0.1-SNAPSHOT/ you set the VERSION_NAME value to 1.0.2

Release Versions

Once a release version is ready, the MAJOR.MINOR.BUILD  value for the very first one starts at 1.0.0. If an update to the release is made the BUILD  value is also incremented by one. If a new release is created from a new snapshot (whose versioning will start at 1.1.0 after the release) the next Release Version willl start at 1.1.0.

Major changes in the products will warrant an increment of the MAJOR value which will then increment by one, thus versioning starting at  2.0.0 and following the same format as above for future updates.

Development Hacks

Refreshing dependencies

When refreshing dependencies as you add code changes to the various modules in the org.smartregister package, you need to clear the local gradle and maven cache with the following in order the latest changes to reflect... so run

rm -rf ~/.m2/repository/org/smartregister/

and then run 

rm -rf ~/.gradle/caches/modules-2/files-2.1/org.smartregister/

and then

./gradlew clean build --refresh-dependencies


Development efficiency

During development it might be inefficient to publish minor updates to the library even on maven local just to test your new changes or during debugging. Thus when developing it is recommended to include the library dependency by using the compile project syntax. e.g when developing the opensrp-client-growth-monitoring library include the library in the sample project using this syntax in sample's build.gradle

compile project(":opensrp-growth-monitoring")