2022-09-25 00:14:31 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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>
|
|
|
|
|
|
|
|
<artifactId>GpxAndroidSdk</artifactId>
|
|
|
|
<groupId>me.bvn13.sdk.android.gpx</groupId>
|
2022-09-29 20:42:56 +03:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2022-09-25 21:26:01 +03:00
|
|
|
|
2022-09-25 00:14:31 +03:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2022-09-25 21:26:01 +03:00
|
|
|
<name>GPX Android SDK (Kotlin)</name>
|
|
|
|
<description>Android SDK for manipulating GPX files (Kotlin)</description>
|
|
|
|
<url>https://github.com/bvn13/GpxAndroidSdk</url>
|
2022-09-25 00:14:31 +03:00
|
|
|
|
2022-09-25 21:54:45 +03:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
2022-09-25 00:14:31 +03:00
|
|
|
<properties>
|
2022-09-25 21:26:01 +03:00
|
|
|
<!-- Encoding -->
|
2022-09-25 00:14:31 +03:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2022-09-25 21:26:01 +03:00
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<!-- kotlin -->
|
2022-09-25 00:14:31 +03:00
|
|
|
<kotlin.code.style>official</kotlin.code.style>
|
|
|
|
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
|
2022-09-25 21:26:01 +03:00
|
|
|
<!-- Publishing -->
|
|
|
|
<nexus.url>https://s01.oss.sonatype.org</nexus.url>
|
|
|
|
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
|
|
|
|
<maven-surefire-plugin.version>3.0.0-M7</maven-surefire-plugin.version>
|
|
|
|
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
|
|
|
|
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
|
|
|
|
<gitflow-maven-plugin.version>1.18.0</gitflow-maven-plugin.version>
|
2022-09-26 13:43:17 +03:00
|
|
|
<maven-jar.version>3.3.0</maven-jar.version>
|
2022-09-25 21:26:01 +03:00
|
|
|
<!-- dependencies -->
|
|
|
|
<kotlin-junit.version>1.7.10</kotlin-junit.version>
|
|
|
|
<jupiter.version>5.8.2</jupiter.version>
|
|
|
|
<kotest.version>5.4.2</kotest.version>
|
2022-09-25 21:54:45 +03:00
|
|
|
<dokka.version>1.7.10</dokka.version>
|
2022-09-25 00:14:31 +03:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>mavenCentral</id>
|
|
|
|
<url>https://repo1.maven.org/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2022-09-25 21:26:01 +03:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>internal.repo</id>
|
|
|
|
<name>Temporary Staging Repository</name>
|
|
|
|
<url>file://${project.build.directory}/mvn-repo</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-test-junit5</artifactId>
|
|
|
|
<version>${kotlin-junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
|
|
<version>${kotlin-junit.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-09-29 19:34:37 +03:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${jupiter.version}</version>
|
2022-09-25 21:26:01 +03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2022-09-25 00:14:31 +03:00
|
|
|
<build>
|
2022-09-25 21:26:01 +03:00
|
|
|
<finalName>gpx-android-sdk</finalName>
|
|
|
|
|
2022-09-25 00:14:31 +03:00
|
|
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
|
|
|
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
2022-09-25 22:28:02 +03:00
|
|
|
|
2022-09-25 00:14:31 +03:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
2022-09-25 21:26:01 +03:00
|
|
|
<version>${kotlin-junit.version}</version>
|
2022-09-25 00:14:31 +03:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>compile</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>test-compile</id>
|
|
|
|
<phase>test-compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test-compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2022-09-26 13:43:17 +03:00
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
2022-09-25 00:14:31 +03:00
|
|
|
<configuration>
|
|
|
|
<trimStackTrace>false</trimStackTrace>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
<version>2.22.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-09-25 21:54:45 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jetbrains.dokka</groupId>
|
|
|
|
<artifactId>dokka-maven-plugin</artifactId>
|
|
|
|
<version>${dokka.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2022-09-25 22:17:42 +03:00
|
|
|
<phase>process-resources</phase>
|
2022-09-25 21:54:45 +03:00
|
|
|
<goals>
|
|
|
|
<goal>dokka</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2022-09-26 13:43:17 +03:00
|
|
|
<jdkVersion>8</jdkVersion>
|
|
|
|
<perPackageOptions>
|
|
|
|
<packageOption>
|
|
|
|
<matchingRegex>com\..*</matchingRegex>
|
|
|
|
<includeNonPublic>true</includeNonPublic>
|
|
|
|
</packageOption>
|
|
|
|
</perPackageOptions>
|
|
|
|
<sourceDirectories>
|
|
|
|
<dir>${project.basedir}/src/main/kotlin</dir>
|
|
|
|
</sourceDirectories>
|
2022-09-25 21:54:45 +03:00
|
|
|
<dokkaPlugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jetbrains.dokka</groupId>
|
|
|
|
<artifactId>kotlin-as-java-plugin</artifactId>
|
|
|
|
<version>${dokka.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</dokkaPlugins>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-09-26 13:43:17 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>${maven-jar.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>dokka-jar</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<classifier>javadoc</classifier>
|
|
|
|
<classesDirectory>${project.build.directory}/dokka</classesDirectory>
|
|
|
|
<skipIfEmpty>true</skipIfEmpty>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
|
|
|
</manifest>
|
|
|
|
<manifestEntries>
|
|
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
|
|
<Specification-Version>${project.version}</Specification-Version>
|
|
|
|
<Multi-Release>true</Multi-Release>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-09-25 00:14:31 +03:00
|
|
|
</plugins>
|
2022-09-25 21:26:01 +03:00
|
|
|
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.amashchenko.maven.plugin</groupId>
|
|
|
|
<artifactId>gitflow-maven-plugin</artifactId>
|
|
|
|
<version>${gitflow-maven-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<pushRemote>false</pushRemote>
|
|
|
|
<gitFlowConfig>
|
|
|
|
<developmentBranch>develop</developmentBranch>
|
|
|
|
</gitFlowConfig>
|
|
|
|
<incrementVersionAtFinish>true</incrementVersionAtFinish>
|
|
|
|
<versionDigitToIncrement>2</versionDigitToIncrement>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2022-09-25 00:14:31 +03:00
|
|
|
</build>
|
|
|
|
|
2022-09-25 21:26:01 +03:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>bvn13</id>
|
|
|
|
<name>Vyacheslav Boyko</name>
|
|
|
|
<email>dev@bvn13.me</email>
|
|
|
|
<roles>
|
|
|
|
<role>Developer</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://github.com/bvn13/OpenFeign-NormalizedLogger.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com:bvn13/OpenFeign-NormalizedLogger.git</developerConnection>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
<url>https://github.com/bvn13/OpenFeign-NormalizedLogger.git</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2022-09-25 22:02:31 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jetbrains.dokka</groupId>
|
|
|
|
<artifactId>dokka-maven-plugin</artifactId>
|
|
|
|
<version>${dokka.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2022-09-25 22:17:42 +03:00
|
|
|
<phase>process-resources</phase>
|
2022-09-25 22:02:31 +03:00
|
|
|
<goals>
|
|
|
|
<goal>dokka</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2022-09-26 13:43:17 +03:00
|
|
|
<jdkVersion>8</jdkVersion>
|
|
|
|
<perPackageOptions>
|
|
|
|
<packageOption>
|
|
|
|
<matchingRegex>com\..*</matchingRegex>
|
|
|
|
<includeNonPublic>true</includeNonPublic>
|
|
|
|
</packageOption>
|
|
|
|
</perPackageOptions>
|
|
|
|
<sourceDirectories>
|
|
|
|
<dir>${project.basedir}/src/main/kotlin</dir>
|
|
|
|
</sourceDirectories>
|
2022-09-25 22:02:31 +03:00
|
|
|
<dokkaPlugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jetbrains.dokka</groupId>
|
|
|
|
<artifactId>kotlin-as-java-plugin</artifactId>
|
|
|
|
<version>${dokka.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</dokkaPlugins>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-09-26 13:43:17 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>${maven-jar.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>dokka-jar</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<classifier>javadoc</classifier>
|
|
|
|
<classesDirectory>${project.build.directory}/dokka</classesDirectory>
|
|
|
|
<skipIfEmpty>true</skipIfEmpty>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
|
|
|
</manifest>
|
|
|
|
<manifestEntries>
|
|
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
|
|
<Specification-Version>${project.version}</Specification-Version>
|
|
|
|
<Multi-Release>true</Multi-Release>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-09-25 21:26:01 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>${maven-deploy-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
<version>${nexus-staging-maven-plugin.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-deploy</id>
|
|
|
|
<phase>deploy</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>deploy</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
<nexusUrl>${nexus.url}</nexusUrl>
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>${maven-gpg-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>${nexus.url}/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>${nexus.url}/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>jcenter</id>
|
|
|
|
<name>JCenter</name>
|
|
|
|
<url>https://jcenter.bintray.com/</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2022-09-25 00:14:31 +03:00
|
|
|
|
|
|
|
</project>
|