Skip to content

Commit 96185c1

Browse files
committed
Add empty exclusion list for incremental builds
The default exclusion list from apache/camel contains modules that don't exist in camel-spring-boot (like :camel-allcomponents, :dummy-component, etc.), which causes Maven to fail with 'Could not find the selected project in the reactor'. This empty exclusion list overrides the defaults and allows incremental builds to work correctly.
1 parent 9051471 commit 96185c1

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
# Exclusion list for camel-spring-boot incremental builds
3+
# Override the default exclusion list from apache/camel which contains modules
4+
# that don't exist in camel-spring-boot
5+
6+
# camel-spring-boot has fewer generated/meta modules to exclude
7+
# Most exclusions from main Camel don't apply here
8+
EXCLUSION_LIST=""

0 commit comments

Comments
 (0)