This app enables Matomo analytics for a site.
Here's the documentation for this application:
App version | Required XP version | Download |
---|---|---|
1.0.0 | 7.5.0 | Clone and build this repo |
Build this application from the command line. Go to the root of the project and enter:
./gradlew clean build
To deploy the app, set $XP_HOME
environment variable and enter:
./gradlew deploy
Build this application from the command line. Go to the root of the project and enter:
enonic project build
To deploy the app, simply enter:
enonic project deploy
To release a new version of this app, please follow the steps below:
-
Update
version
(and possiblyxpVersion
) ingradle.properties
. -
Compile and deploy to our Maven repository:
./gradlew clean build uploadArchives
-
Update
README.md
file with new version information and compatibility. -
Tag the source code using
git tag
command (whereX.X.X
is the released version):git tag vX.X.X
-
Update
gradle.properties
with the next snapshot version and commit changes. -
Push the updated code to Git.
git push origin master --tags