template.ftl 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <#function artifactFormat p>
  2. <#if p.name?index_of('Unnamed') &gt; -1>
  3. <#return p.artifactId + " (" + p.groupId + ":" + p.artifactId + ":" + p.version + " - " + (p.url!"no url defined") + ")">
  4. <#else>
  5. <#return p.name + " (" + p.groupId + ":" + p.artifactId + ":" + p.version + " - " + (p.url!"no url defined") + ")">
  6. </#if>
  7. </#function>
  8. This program is free software: you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation, either version 3 of the License, or
  11. (at your option) any later version.
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program. If not, see http://www.gnu.org/licenses/.
  18. Cryptomator uses ${dependencyMap?size} third-party dependencies under the following licenses:
  19. <#list licenseMap as e>
  20. <#assign license = e.getKey()/>
  21. <#assign projects = e.getValue()/>
  22. <#if projects?size &gt; 0>
  23. ${license}:
  24. <#list projects as project>
  25. - ${artifactFormat(project)}
  26. </#list>
  27. </#if>
  28. </#list>
  29. Cryptomator uses other third-party assets under the following licenses:
  30. SIL OFL 1.1 License:
  31. - Font Awesome 5.12.0 (https://fontawesome.com/)