-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
42 lines (36 loc) · 1.87 KB
/
Copy pathpom.xml
File metadata and controls
42 lines (36 loc) · 1.87 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
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.cloudempiere.ai</groupId>
<artifactId>com.cloudempiere.ai.main</artifactId>
<version>10.0.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Cloudempiere AI - Main Build</name>
<modules>
<!-- Build Order: parent → deps → core → domains → legacy → theme → feature → p2 -->
<module>com.cloudempiere.ai.parent</module>
<module>com.cloudempiere.ai.deps</module>
<module>com.cloudempiere.ai.core</module>
<!-- Domain Plugins (Phase 2 Weeks 5-6) -->
<module>com.cloudempiere.ai.sales</module>
<module>com.cloudempiere.ai.inventory</module>
<module>com.cloudempiere.ai.purchasing</module>
<module>com.cloudempiere.ai.support</module>
<module>com.cloudempiere.ai.kb</module>
<!-- Legacy Monolithic Plugin (removed from build - use core instead) -->
<!-- <module>com.cloudempiere.ai.plugin</module> -->
<!-- Infrastructure -->
<module>com.cloudempiere.ai.theme</module>
<module>com.cloudempiere.ai.feature</module>
<module>com.cloudempiere.ai.p2</module>
<!-- Test bundle. Excluded until 2026-08-12 with the note "uses eclipse-test-plugin with
special iDempiere parent config" — accurate, and the reason was that its parent was
org.idempiere.parent via ../../iDempiereCLDE/, a path into a sibling repo CI never
checks out. It is now parented to com.cloudempiere.ai.parent, and org.idempiere.test
(AbstractTestCase) comes from the maven channel iDempiereCLDE publishes rather than
from P2, which never carries it.
See com.cloudempiere.graphql/docs/testing/INTEGRATION-TESTS-NOT-IN-CI.md -->
<module>com.cloudempiere.ai.test</module>
</modules>
</project>