Skip to content

Commit

Permalink
feat: add distributionManagement
Browse files Browse the repository at this point in the history
  • Loading branch information
remisbaima committed Apr 23, 2022
1 parent 1c785de commit b79297e
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions pom.xml
@@ -1,15 +1,17 @@
<?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 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">
<modelVersion>4.0.0</modelVersion>

<groupId>org.remis</groupId>
<artifactId>license-checker-cyclonedx-maven-plugin</artifactId>
<version>0.0.4</version>
<version>0.0.1</version>
<packaging>maven-plugin</packaging>

<name>License Checker for CycloneDX Maven Plugin</name>
<description>Maven plugin to check if dependencies in CycloneDX BOM files use only allowed licenses.</description>
<url>https://github.com/remisbaima/license-checker-cyclonedx-maven-plugin</url>
<url>https://github.com/remisbaima/${project.artifactId}</url>
<inceptionYear>2022</inceptionYear>

<licenses>
Expand All @@ -30,22 +32,30 @@
</developers>

<scm>
<connection>scm:git:git@github.com:remisbaima/license-checker-cyclonedx-maven-plugin.git</connection>
<url>https://github.com/remisbaima/license-checker-cyclonedx-maven-plugin.git</url>
<developerConnection>scm:git:git@github.com:remisbaima/license-checker-cyclonedx-maven-plugin.git</developerConnection>
<connection>scm:git:git@github.com:remisbaima/${project.artifactId}.git</connection>
<url>https://github.com/remisbaima/${project.artifactId}.git</url>
<developerConnection>scm:git:git@github.com:remisbaima/${project.artifactId}.git</developerConnection>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/remisbaima/license-checker-cyclonedx-maven-plugin/issues</url>
<url>https://github.com/remisbaima/${project.artifactId}/issues</url>
</issueManagement>

<ciManagement>
<system>GitHub</system>
<url>https://github.com/remisbaima/license-checker-cyclonedx-maven-plugin/actions</url>
<url>https://github.com/remisbaima/${project.artifactId}/actions</url>
</ciManagement>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/remisbaima/${project.artifactId}</url>
</repository>
</distributionManagement>

<prerequisites>
<maven>3.6.3</maven>
</prerequisites>
Expand Down

0 comments on commit b79297e

Please sign in to comment.