-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodules-conf.txt.template
More file actions
44 lines (37 loc) · 2.33 KB
/
modules-conf.txt.template
File metadata and controls
44 lines (37 loc) · 2.33 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
# ═══════════════════════════════════════════════════════════════
# modules-conf.txt - Module Configuration
# Place this file in your project root (next to pom.xml).
# Used by the Module Manager TUI (./modules).
# ═══════════════════════════════════════════════════════════════
#
# Format:
# ROOT_MODULE=<artifact-name> Always-on modules (not toggleable)
# TOGGLE=<artifact>|<group>|<name> Toggleable module with group and display name
# DEP=<module>|<dependency> Module depends on dependency
# LOCKED=<artifact> Toggleable module that cannot be turned off
# WEBAPP_POM=<relative-path> Path to webapp pom.xml (optional, auto-detected from build-conf.txt)
#
# Groups are used to organize the TUI display. Common groups:
# root, admin, feature
#
# Example for a project called "myapp":
# ── Always-on modules (not shown in toggle list) ─────────────
ROOT_MODULE=myapp-common
ROOT_MODULE=myapp-interfaces
ROOT_MODULE=myapp-jpa
# ── Toggleable: root group ───────────────────────────────────
TOGGLE=myapp-email|root|email
TOGGLE=myapp-flyway|root|flyway
# ── Toggleable: admin group ──────────────────────────────────
TOGGLE=myapp-admin-settings|admin|settings
TOGGLE=myapp-admin-users|admin|users
# ── Toggleable: feature group ────────────────────────────────
TOGGLE=myapp-feature-a|feature|feature-a
TOGGLE=myapp-feature-b|feature|feature-b
# ── Dependencies ─────────────────────────────────────────────
# Format: module|dependency (module requires dependency to build)
DEP=myapp-feature-b|myapp-email
# ── Locked modules (always on, cannot be toggled off) ────────
LOCKED=myapp-admin-settings
# ── Webapp POM (optional, auto-detected from WEBAPP_MODULE in build-conf.txt) ──
# WEBAPP_POM=myapp-webapp/pom.xml