Skip to content

Commit

Permalink
Add Maven metadata to support releases
Browse files Browse the repository at this point in the history
  • Loading branch information
ibacher committed May 27, 2021
1 parent 67fb1ba commit d45eb49
Showing 1 changed file with 41 additions and 4 deletions.
45 changes: 41 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,53 @@
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.openmrs</groupId>
<artifactId>addonindex</artifactId>
<version>2.0.0-SNAPSHOT</version>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.0</version>
</parent>

<groupId>org.openmrs</groupId>
<artifactId>addonindex</artifactId>
<version>2.0.0-SNAPSHOT</version>

<issueManagement>
<system>JIRA</system>
<url>https://issues.openmrs.org/projects/AO/</url>
</issueManagement>

<licenses>
<license>
<name>OpenMRS Public License</name>
<url>http://openmrs.org/wiki/License</url>
</license>
</licenses>

<organization>
<name>OpenMRS LLC.</name>
<url>https://openmrs.org</url>
</organization>

<scm>
<connection>scm:git:[email protected]:openmrs/openmrs-contrib-addonindex.git</connection>
<developerConnection>scm:git:[email protected]:openmrs/openmrs-contrib-addonindex.git</developerConnection>
<url>https://github.com/openmrs/openmrs-contrib-addonindex</url>
<tag>HEAD</tag>
</scm>

<distributionManagement>
<repository>
<id>openmrs-repo-modules</id>
<name>OpenMRS Maven Repo</name>
<url>https://mavenrepo.openmrs.org/contrib</url>
</repository>
<snapshotRepository>
<id>openmrs-repo-snapshots</id>
<name>OpenMRS Maven Repo</name>
<url>https://mavenrepo.openmrs.org/contrib</url>
</snapshotRepository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit d45eb49

Please sign in to comment.