utilities-bigdecimal-biginteger
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.leibnix</groupId>
<artifactId>utilities-bigdecimal-biginteger</artifactId>
<version>1.0.0</version>
</dependency><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.leibnix</groupId>
<artifactId>utilities-bigdecimal-biginteger</artifactId>
<packaging>jar</packaging>
<version>1.0.0</version>
<name>utilities-bigdecimal-biginteger</name>
<description>Functions about BigDecimal and BigInteger</description>
<url>https://leibnix.com/</url>
<licenses>
<license>
<name>CC0 1.0 Universal License</name>
<url>https://creativecommons.org/publicdomain/zero/1.0/</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@gitlab.com:com.leibnix/utilities-bigdecimal-biginteger.git</connection>
<developerConnection>scm:git:git@gitlab.com:com.leibnix/utilities-bigdecimal-biginteger.git</developerConnection>
<url>https://gitlab.com/com.leibnix/utilities-bigdecimal-biginteger</url>
</scm>
<repositories>
<!-- Nothing -->
</repositories>
<pluginRepositories>
<!-- Nothing -->
</pluginRepositories>
<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>
<developers>
<developer>
<id>axelarrondo</id>
<name>Axel Arrondo</name>
<email>axelarrondo@gmail.com</email>
</developer>
</developers>
<organization>
<name>leibnix</name>
<url>https://leibnix.com/</url>
</organization>
<properties>
<property name="maven.compiler.source" value="19"/>
<property name="maven.compiler.target" value="19"/>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>19</source>
<target>19</target>
</configuration>
</plugin>
<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</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- gpg sign -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-files-for-maven-central</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<showFiles>true</showFiles>
<displayFingerprint>true</displayFingerprint>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<serverId>central</serverId>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<source>19</source>
<target>19</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<properties>
<property name="junit.platform.properties" value="junit.jupiter.extensions.autodetection.enabled=true"/>
</properties>
</configuration>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.2</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>