--- id: version-catalog aliases: [] tags: - process/project status: Archiv subtitle: Implementierung eines Gradle Plugins zur Verwaltung externer Abhängigkeiten type: Software --- >[!info]- Projekt >Goal:: >Progress:: `$= dv.view('project-progress', {file: 'version-catalog'})` >Target:: `$= dv.view('project-target', {file: 'version-catalog'})` >Bar:: `$= dv.view('project-progress-bar', {file: 'version-catalog'})` >Tasks:: `$= const aufgaben = dv.page('version-catalog').file.inlinks.where(t => { const mt = dv.page(t.path); return mt.tags?.includes('process/task') && mt.status === 'In Arbeit'}); if (aufgaben.length > 0) { dv.header(4, aufgaben.length > 1 ? "Aufgaben" : "Aufgabe"); dv.list(aufgaben) }` ## Project Info ## Thoughts ## Resources ## Github >[!info] >Gradle Feature Version Catalog >[version-catalog](https://github.com/cimt-ag/version-catalog) ## Review questions ## Aufgaben - [x] Add convention-plugins from github [start:: 2024-06-10] [completion:: 2024-06-03] ## Offene Aufgaben ```dataviewjs const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task')).where(p => dv.page(p.path).file.tasks.length != dv.page(p.path).file.tasks.where(t => t.fullyCompleted === true).length); dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => { const page = dv.page(p.path); const tasks = page.file.tasks; return [ page.file.link, page.status, tasks.where(t => t.fullyCompleted === true).length, tasks.length ] })); ``` ## Aufgaben ```dataviewjs const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task')); dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => { const page = dv.page(p.path); const tasks = page.file.tasks; return [ page.file.link, page.status, tasks.where(t => t.fullyCompleted === true).length, tasks.length ] })); ```