German translation of CUBA Platform implemented as application component
- Add the following maven repository
https://dl.bintray.com/balvi/cuba-componentsto the build.gradle of your CUBA application:
buildscript {
//...
repositories {
// ...
maven {
url "https://dl.bintray.com/balvi/cuba-components"
}
}
// ...
}- Select a version of the add-on which is compatible with the platform version used in your project:
| Platform Version | Add-on Version |
|---|---|
| 7.2.x | 1.7.x |
| 7.1.x | 1.5.x, 1.6.x |
| 7.0.x | 1.4.x |
| 6.10.x | 1.3.x |
| 6.9.x | 1.2.x |
| 6.8.x | 1.1.x |
| 6.7.x | 1.0.x |
The latest version is: 1.6.3
Add custom application component to your project:
- Artifact group:
de.balvi.cuba.translationde - Artifact name:
translation-de-global - Version: add-on version
dependencies {
appComponent("de.balvi.cuba.translationde:translation-de-global:1.6.3")
[...]
}