ohsome-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.heigit.ohsome</groupId>
<artifactId>ohsome-parent</artifactId>
<version>2.14.0</version>
</dependency><?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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.heigit.ohsome</groupId>
<artifactId>ohsome-parent</artifactId>
<version>2.14.0</version>
<packaging>pom</packaging>
<name>HeiGIT ohsome parent</name>
<url>https://ohsome.org</url>
<description>Spatial and temporal analyses of crowd-sourced and other geodata</description>
<inceptionYear>2016</inceptionYear>
<organization>
<name>HeiGIT</name>
<url>https://heigit.org/</url>
</organization>
<scm>
<url>https://gitlab.gistools.geog.uni-heidelberg.de/giscience/big-data/ohsome/parent</url>
<connection>scm:git:https://gitlab.gistools.geog.uni-heidelberg.de/giscience/big-data/ohsome/parent.git</connection>
<developerConnection>scm:git:ssh://git@gitlab.gistools.geog.uni-heidelberg.de:2022/giscience/big-data/ohsome/parent.git</developerConnection>
</scm>
<licenses>
<license>
<name>GNU General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
<distribution>repo</distribution>
<comments>The GNU General Public License is a free, copyleft license for software and other kinds of works.</comments>
</license>
<license>
<name>GNU Lesser General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
<comments>A more business-friendly addition to the gpl 3.0.</comments>
</license>
</licenses>
<developers>
<developer>
<id>ohsome</id>
<name>ohsome team</name>
<email>ohsome@heigit.org</email>
<url>https://www.ohsome.org</url>
</developer>
</developers>
<ciManagement>
<system>Jenkins</system>
<url>https://jenkins.ohsome.org/</url>
</ciManagement>
<repositories>
<repository>
<id>heigit-nexus-public</id>
<name>HeiGIT maven repositories</name>
<url>https://nexus.heigit.org/repository/maven-public/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>heigit-nexus-releases</id>
<name>HeiGIT Releases</name>
<url>https://nexus.heigit.org/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>heigit-nexus-snapshots</id>
<name>HeiGIT Snapshots</name>
<url>https://nexus.heigit.org/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jacoco.version>0.8.10</jacoco.version>
<java.version>17</java.version>
<checkstyle.version>10.12.3</checkstyle.version>
<gitcommitplugin.version>4.9.10</gitcommitplugin.version>
<maven.version>3.6</maven.version>
<mavencheckstyle.version>3.3.0</mavencheckstyle.version>
<mavencompiler.version>3.11.0</mavencompiler.version>
<mavenenforcer.version>3.4.0</mavenenforcer.version>
<mavengpg.version>3.1.0</mavengpg.version>
<mavenjavadoc.version>3.5.0</mavenjavadoc.version>
<mavenpmd.version>3.21.0</mavenpmd.version>
<mavensurefire.version>3.1.2</mavensurefire.version>
<nexusstagingmaven.version>1.6.13</nexusstagingmaven.version>
<pmd.version>6.55.0</pmd.version>
<sonar.coverage.jacoco.xmlReportPaths>${project.build.directory}/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.organization>giscience</sonar.organization>
<sonar.version>3.9.1.2184</sonar.version>
<spotbugs.version>4.7.3</spotbugs.version>
<spotbugs-plugin.version>4.7.3.5</spotbugs-plugin.version>
<checkstyle-plugin.phase>verify</checkstyle-plugin.phase>
</properties>
<build>
<plugins>
<!-- define minimum maven version as 3.x -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${mavenenforcer.version}</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>${maven.version}</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<!-- define versions of build and report plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${mavencompiler.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${mavenjavadoc.version}</version>
<configuration>
<source>${java.version}</source>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${spotbugs-plugin.version}</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>${spotbugs.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${mavensurefire.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${mavencheckstyle.version}</version>
<configuration>
<configLocation>checkstyle-google-ohsome.xml</configLocation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
</configuration>
<executions>
<execution>
<id>do-checkstyle-verification</id>
<phase>${checkstyle-plugin.phase}</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>${checkstyle.version}</version>
</dependency>
<dependency>
<groupId>org.heigit.ohsome</groupId>
<artifactId>ohsome-codestyle</artifactId>
<version>2.14.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${mavenpmd.version}</version>
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>${pmd.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>${pmd.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>${sonar.version}</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${mavengpg.version}</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>
</plugins>
</build>
</profile>
<profile>
<id>git</id>
<build>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>${gitcommitplugin.version}</version>
<executions>
<execution>
<id>get-the-git-infos</id>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
<prefix>git</prefix>
<verbose>false</verbose>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
<format>json</format>
<gitDescribe>
<skip>false</skip>
<always>false</always>
<dirty>-dirty</dirty>
</gitDescribe>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>deploy-central</id>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexusstagingmaven.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>jacoco</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<modules>
<module>ohsome-codestyle</module>
</modules>
</project>