mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
Generate SPDX SBOM from pom
This commit is contained in:
parent
6f237744fa
commit
f9ddb710f9
24
pom.xml
24
pom.xml
|
@ -20,6 +20,14 @@ SPDX-FileCopyrightText: 2023 swt23w23
|
|||
<url>https://github.com/st-tu-dresden-praktikum/swt23w23</url>
|
||||
</scm>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>AGPL-3.0-or-later</name>
|
||||
<url>https://www.gnu.org/licenses/agpl-3.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<parent>
|
||||
<groupId>de.tudresden.inf.st.lab</groupId>
|
||||
<artifactId>st-lab-parent</artifactId>
|
||||
|
@ -91,6 +99,22 @@ SPDX-FileCopyrightText: 2023 swt23w23
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.spdx</groupId>
|
||||
<artifactId>spdx-maven-plugin</artifactId>
|
||||
<version>0.7.2</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>build-spdx</id>
|
||||
<goals>
|
||||
<goal>createSPDX</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<licenseDeclared>AGPL-3.0-or-later</licenseDeclared>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
|
Loading…
Reference in a new issue