| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <groupId>ch.obermuhlner</groupId>
- <artifactId>big-math</artifactId>
- <version>2.0.1</version>
- <name>Big Math</name>
- <description>Math functions for BigDecimal.</description>
- <url>https://github.com/eobermuhlner/big-math</url>
- <licenses>
- <license>
- <name>MIT License</name>
- <url>https://raw.githubusercontent.com/eobermuhlner/big-math/master/LICENSE.txt</url>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>eobermuhlner</id>
- <name>Eric Obermuhlner</name>
- <email>eobermuhlner@gmail.com</email>
- </developer>
- </developers>
- <scm>
- <connection>scm:git:git://github.com/big-math.git</connection>
- <developerConnection>scm:ssh://github.com:eobermuhlner/big-math.git</developerConnection>
- <url>https://github.com/eobermuhlner/big-math/</url>
- </scm>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|