Browse Source

BUILD-1443 sbom plugin (#130)

* feat(BUILD-1436): sbom plugin
* feat(BUILD-1436): upgrade to parent 61.0.147

Co-authored-by: tomverin
Reviewed-by: dbmeneses
tags/4.8.0.2856
Julien Carsique 2 years ago
parent
commit
e2e857b5f0
No account linked to committer's email address
1 changed files with 19 additions and 3 deletions
  1. 19
    3
      pom.xml

+ 19
- 3
pom.xml View File

<parent> <parent>
<groupId>org.sonarsource.parent</groupId> <groupId>org.sonarsource.parent</groupId>
<artifactId>parent</artifactId> <artifactId>parent</artifactId>
<version>60.0.52</version>
<version>61.0.147</version>
</parent> </parent>


<groupId>org.sonarsource.scanner.cli</groupId> <groupId>org.sonarsource.scanner.cli</groupId>
<system>JIRA</system> <system>JIRA</system>
<url>https://jira.sonarsource.com/browse/SQSCANNER</url> <url>https://jira.sonarsource.com/browse/SQSCANNER</url>
</issueManagement> </issueManagement>
<ciManagement>
<system>cirrus-ci</system>
<url>https://cirrus-ci.com/github/SonarSource/sonar-scanner-cli</url>
</ciManagement>


<properties> <properties>
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile> <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<jre.dirname.macosx>jdk-11.0.14.1+1-jre/Contents/Home</jre.dirname.macosx> <jre.dirname.macosx>jdk-11.0.14.1+1-jre/Contents/Home</jre.dirname.macosx>


<!-- Release: enable publication to Bintray --> <!-- Release: enable publication to Bintray -->
<artifactsToPublish>${project.groupId}:${project.artifactId}:zip,${project.groupId}:${project.artifactId}:zip:linux,${project.groupId}:${project.artifactId}:zip:windows,${project.groupId}:${project.artifactId}:zip:macosx</artifactsToPublish>
<artifactsToPublish>${project.groupId}:${project.artifactId}:zip,${project.groupId}:${project.artifactId}:zip:linux,${project.groupId}:${project.artifactId}:zip:windows,${project.groupId}:${project.artifactId}:zip:macosx,${project.groupId}:${project.artifactId}:json:cyclonedx</artifactsToPublish>


<maven.compiler.release>8</maven.compiler.release> <maven.compiler.release>8</maven.compiler.release>
</properties> </properties>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<configuration> <configuration>
<source>8</source>
<source>8</source>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>makeAggregateBom</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>



Loading…
Cancel
Save