<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.dllearner</groupId>
  <artifactId>owl-time</artifactId>
  <version>0.1.0</version>
  <packaging>jar</packaging>

  <name>owl-time</name>
  <description>OWL-Time implementation based on the description at https://www.w3.org/TR/2017/CR-owl-time-20170606/</description>
  <url>https://github.com/patrickwestphal/owl-time</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <owlapi.version>4.3.0</owlapi.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>net.sourceforge.owlapi</groupId>
      <artifactId>owlapi-distribution</artifactId>
      <version>${owlapi.version}</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>com.amashchenko.maven.plugin</groupId>
          <artifactId>gitflow-maven-plugin</artifactId>
          <version>1.2.3</version>
          <configuration>
            <installProject>false</installProject>
            <verbose>true</verbose>

            <gitFlowConfig>
              <productionBranch>master</productionBranch>
              <developmentBranch>develop</developmentBranch>
              <featureBranchPrefix>feature/</featureBranchPrefix>
              <releaseBranchPrefix>release/</releaseBranchPrefix>
              <hotfixBranchPrefix>hotfix/</hotfixBranchPrefix>
              <supportBranchPrefix>support/</supportBranchPrefix>
              <versionTagPrefix></versionTagPrefix>
            </gitFlowConfig>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>

  <distributionManagement>
    <repository>
      <id>maven.aksw.internal</id>
      <name>AKSW Internal Release Repository</name>
      <url>http://maven.aksw.org/archiva/repository/internal</url>
    </repository>
    
    <snapshotRepository>
      <id>archiva.snapshots</id>
      <name>AKSW Snapshot Repository</name>
      <url>http://maven.aksw.org/archiva/repository/snapshots</url>
    </snapshotRepository>
    <!-- start - location where site is deployed - username/password for site.deployments in server.xml -->
    <site>
      <id>site.deployments</id>
      <name>Site deployments</name>
      <url>scp://prod0.aksw.org/var/www/aksw.org/javadoc/</url>
    </site>
    <!-- end - location where site is deployed - username/password for site.deployments in server.xml -->
  </distributionManagement>

</project>
