<?xml version="1.0" encoding="UTF-8"?>
<!--

Compilation and installation of all modules in the local repository:
  mvn clean install

Compilation and installation of all modules in the local repository, without running the tests nor generating Javadocs:
  mvn clean install -DskipTests -Dmaven.javadoc.skip

Compilation of selected modules, sign with the given key and deploy to Maven Central:
  mvn clean deploy -Prelease -Dgpg.keyname=5DA0DA74CADE10E6DDE646611983F53632921972

By using the maven-flatten-plugin, this pom.xml allows us to use properties to define
the versions of the artifacts: the properties will be replaced by their value in the deployed artifacts.

-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>io.hotmoka.annotations</groupId>
  <artifactId>io-hotmoka-annotations</artifactId>
  <version>1.4.1</version>
  <name>io-hotmoka-annotations</name>
  <description>This modules defines some basic annotations.</description>
  <url>https://github.com/Hotmoka/io-hotmoka-annotations</url>
  <inceptionYear>2019</inceptionYear>
  <organization>
    <name>Hotmoka</name>
    <url>https://www.hotmoka.io</url>
  </organization>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Fausto Spoto</name>
      <email>fausto.spoto@hotmoka.io</email>
      <organization>Hotmoka</organization>
      <organizationUrl>https://www.hotmoka.io</organizationUrl>
      <timezone>UTC+01:00</timezone>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/Hotmoka/io-hotmoka-annotations.git</connection>
    <developerConnection>scm:git:git@github.com:Hotmoka/io-hotmoka-annotations.git</developerConnection>
    <url>https://github.com/Hotmoka/io-hotmoka-annotations</url>
  </scm>
  <distributionManagement>
    <repository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
  </distributionManagement>
</project>
