-
Notifications
You must be signed in to change notification settings - Fork 54
/
properties.gradle
32 lines (27 loc) · 1.05 KB
/
properties.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
ext {
date = new Date()
// vendor information
vendorName = 'Chair of Geoinformatics'
vendorOrganisation = 'Technical University of Munich'
vendorCountry = 'Germany'
vendorWebsiteUrl = 'https://www.lrg.tum.de/gis'
vendorCopyright = '2013-' + date.format('yyyy')
// 3D City Database
citydbShortName = '3DCityDB'
citydbName = '3D City Database'
citydbVersion = '4.4.x'
citydbWebsiteUrl = 'https://www.3dcitydb.org'
citydbVcsUrl = 'https://github.com/3dcitydb'
// Importer/Exporter
impexpShortName = 'Importer/Exporter'
impexpName = citydbName + ' ' + impexpShortName
impexpVcsUrl = 'https://github.com/3dcitydb/importer-exporter'
impexpGit = impexpVcsUrl + '.git'
impexpIssueTrackerUrl = 'https://github.com/3dcitydb/importer-exporter/issues'
// application
appName = citydbShortName + '-Importer-Exporter'
appShortcutName = citydbShortName + ' Importer Exporter'
appCliName = 'impexp'
// documentation
docUrl = 'https://3dcitydb-docs.readthedocs.io/en/version-2024.0/'
}