-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
84 lines (77 loc) · 3.5 KB
/
pom.xml
File metadata and controls
84 lines (77 loc) · 3.5 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.stackrivet</groupId>
<artifactId>stackrivet</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>StackRivet</name>
<description>AI-native Java Enterprise App Platform · root aggregator</description>
<url>https://stackrivet.zkthink.com</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<modules>
<module>stackrivet-bom</module>
<module>stackrivet-parent</module>
<module>stackrivet-common</module>
<module>stackrivet-security</module>
<module>stackrivet-system</module>
<module>stackrivet-audit</module>
<module>stackrivet-asset</module>
<module>stackrivet-generator</module>
<module>stackrivet-import-export</module>
<module>stackrivet-task</module>
<module>stackrivet-observability</module>
<module>stackrivet-plugin</module>
<module>stackrivet-cli</module>
<module>stackrivet-demo</module>
<!-- Optional scheduler adapter. Built by the reactor (CI catches breakage) but NOT a
dependency of stackrivet-app, so it stays out of the default runtime. -->
<module>stackrivet-scheduler-snailjob</module>
<module>stackrivet-app</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.release>21</maven.compiler.release>
<cyclonedx-maven-plugin.version>2.9.1</cyclonedx-maven-plugin.version>
</properties>
<build>
<plugins>
<!-- Release trust: generate an aggregate CycloneDX SBOM for the reactor. -->
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>${cyclonedx-maven-plugin.version}</version>
<executions>
<execution>
<id>make-aggregate-sbom</id>
<phase>package</phase>
<goals>
<goal>makeAggregateBom</goal>
</goals>
</execution>
</executions>
<configuration>
<projectType>application</projectType>
<schemaVersion>1.6</schemaVersion>
<includeBomSerialNumber>true</includeBomSerialNumber>
<includeCompileScope>true</includeCompileScope>
<includeProvidedScope>true</includeProvidedScope>
<includeRuntimeScope>true</includeRuntimeScope>
<includeSystemScope>true</includeSystemScope>
<includeTestScope>false</includeTestScope>
<outputFormat>all</outputFormat>
<outputName>bom</outputName>
<outputDirectory>${project.build.directory}/site/cyclonedx</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
</project>