<project>
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.micro-manager.ndtiffstorage</groupId>
    <artifactId>NDTiffStorage</artifactId>
    <version>2.19.3</version>
    <packaging>jar</packaging>
    <name>NDTiff Storage file format</name>
    <description>Java-based writer and reader used for NDTiffStorage format and NDRAM storage</description>
    <url>https://github.com/micro-manager/NDTiffStorage</url>
	         
    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <developers>
       <developer>
          <id>henrypinkard</id>
          <name>Henry Pinkard</name>
          <organization>UC Berkeley</organization>
       </developer>
       <developer>
          <id>nicost</id>
          <name>Nico Stuurman</name>
          <organization>UCSF/HHMI</organization>
       </developer>
    </developers>

   <scm>
      <url>https://github.com/micro-manager/NDTiffStorage</url>
    <connection>scm:git:git://github.com/micro-manager/NDTiffStorage.git</connection>
    <developerConnection>scm:git:git@github.com:micro-manager/NDTiffStorage.git</developerConnection>
   </scm>

   
   <licenses>
      <license>
         <name>BSD-3</name>
         <url>https://github.com/micro-manager/NDTiffStorage/blob/master/LICENSE</url>
       </license>
   </licenses>


	<dependencies>
		<dependency>
			<groupId>org.micro-manager.mmcorej</groupId>
			<artifactId>MMCoreJ</artifactId>
			<version>10.1.1.0</version>
		</dependency>
	</dependencies>


    <build>

      <plugins>
       <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>3.2.1</version>
        <executions>
         <execution>
          <id>attach-sources</id>
          <goals>
           <goal>jar-no-fork</goal>
          </goals>
         </execution>
        </executions>
       </plugin>
       <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>3.2.0</version>
        <executions>
         <execution>
          <id>attach-javadocs</id>
          <goals>
           <goal>jar</goal>
          </goals>
         </execution>
        </executions>
       </plugin>
       <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.5</version>
        <executions>
         <execution>
          <id>sign-artifacts</id>
          <phase>verify</phase>
          <goals>
           <goal>sign</goal>
          </goals>
		 
		<configuration>
             	<gpgArguments>
			<arg>--pinentry-mode</arg>
			<arg>loopback</arg>
		</gpgArguments>
	     </configuration>
		 
		 
         </execution>
        </executions>
       </plugin>
       <plugin>
          <groupId>org.sonatype.central</groupId>
          <artifactId>central-publishing-maven-plugin</artifactId>
          <version>0.8.0</version>
          <extensions>true</extensions>
          <configuration>
              <publishingServerId>central</publishingServerId>
              <autoPublish>true</autoPublish>
              <waitUntil>published</waitUntil>
              <waitMaxTime>7200</waitMaxTime>
          </configuration>
      </plugin>

      </plugins>
     </build>



    <distributionManagement>
      <snapshotRepository>
        <id>ossrh</id>
        <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
      </snapshotRepository>
      <repository>
        <id>ossrh</id>
        <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
      </repository>
   </distributionManagement>


</project>
