Skip to content

Commit

Permalink
Merge pull request #665 from apache/sbom
Browse files Browse the repository at this point in the history
Publish SBOM durring release
  • Loading branch information
bdemers authored Sep 13, 2024
2 parents 1b8131b + 9bc18a2 commit 6f40ce8
Showing 1 changed file with 56 additions and 3 deletions.
59 changes: 56 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
specific language governing permissions and limitations
under the License. -->

<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">
<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"
child.project.url.inherit.append.path="false">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down Expand Up @@ -70,8 +73,10 @@
<module>scim-coverage</module>
</modules>

<scm>
<connection>scm:git:https://github.com/apache/directory-scimple.git</connection>
<scm child.scm.connection.inherit.append.path="false"
child.scm.developerConnection.inherit.append.path="false"
child.scm.url.inherit.append.path="false">
<connection>scm:git:https://github.com/apache/directory-scimple.git</connection>
<developerConnection>scm:git:ssh://[email protected]/apache/directory-scimple.git</developerConnection>
<url>https://github.com/apache/directory-scimple</url>
<tag>HEAD</tag>
Expand All @@ -84,6 +89,41 @@
</license>
</licenses>

<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/apache/directory-scimple/actions</url>
</ciManagement>

<mailingLists combine.self="override">
<mailingList>
<name>The Directory SCIMple List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
<archive>https://lists.apache.org/[email protected]</archive>
</mailingList>
<mailingList>
<name>The Directory Developers List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
<archive>https://lists.apache.org/[email protected]</archive>
</mailingList>
<mailingList>
<name>The Directory Notifications List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<post>[email protected]</post>
<archive>https://lists.apache.org/[email protected]</archive>
</mailingList>
<mailingList>
<name>The Directory Commits (SVN and Git) List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<archive>https://lists.apache.org/[email protected]</archive>
</mailingList>
</mailingLists>

<developers>
<developer>
<id>ussmith</id>
Expand Down Expand Up @@ -845,6 +885,19 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<goals>
<goal>makeAggregateBom</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit 6f40ce8

Please sign in to comment.