This repository was archived by the owner on Jun 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
86 lines (81 loc) · 2.7 KB
/
Copy pathpom.xml
File metadata and controls
86 lines (81 loc) · 2.7 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
85
86
<?xml version="1.0"?>
<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>ch.semafor</groupId>
<artifactId>workbook</artifactId>
<version>3.8.4</version>
<packaging>pom</packaging>
<modules>
<module>db-service</module>
<module>generic-workbook</module>
</modules>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.3</version>
</parent>
<scm>
<url>scm:git:ssh://git@github.com/SEMAFORInformatik/Workbook</url>
<developerConnection>
scm:git:ssh://git@github.com/SEMAFORInformatik/Workbook
</developerConnection>
<connection>scm:git:ssh://git@github.com/SEMAFORInformatik/Workbook</connection>
<tag>3.8.4</tag>
</scm>
<properties>
<java.version>17</java.version>
<maven.deploy.skip>true</maven.deploy.skip>
<sonar.organization>semaforinformatik</sonar.organization>
</properties>
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>releases</id>
<name>Semafor Releases Repositories</name>
<url>https://repo.semafor.ch/releases/</url>
</repository>
<repository>
<id>snapshots</id>
<name>Semafor Snapshots Repositories</name>
<url>https://repo.semafor.ch/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<configuration>
<skipNotDeployed>false</skipNotDeployed>
<!-- Project metadata -->
<projectType>application</projectType>
<schemaVersion>1.6</schemaVersion>
<!-- Output options -->
<outputDirectory>${project.build.directory}</outputDirectory>
<outputName>sbom</outputName>
<outputFormat>all</outputFormat>
<!-- Scope inclusion -->
<includeCompileScope>true</includeCompileScope>
<includeProvidedScope>true</includeProvidedScope>
<includeRuntimeScope>true</includeRuntimeScope>
<includeSystemScope>true</includeSystemScope>
<includeTestScope>false</includeTestScope>
<!-- Enhanced metadata -->
<includeBomSerialNumber>true</includeBomSerialNumber>
<includeLicenseText>true</includeLicenseText>
</configuration>
</plugin>
</plugins>
</build>
</project>