chaelgantman.MgntUtils.1.5.0.1.source-code.pom.xml Maven / Gradle / Ivy
<?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>com.github.michaelgantman</groupId> <artifactId>MgntUtils</artifactId> <version>1.5.0.1</version> <name>MgntUtils</name> <description> Set of various Utils: stacktrace noise filter, String to/from unicode sequence converter, Silent String parsing to Integer and other numeric types, Parsing String to time intervals with support for time unit suffixes, Version comparator and Version ranges operations, Self-throttling binary reader from Http request, File reader, A utility that automatically initiates a Factory with instances of all classes that implement user provided interface. An infrastructure for writing Scheduled Task classes where time interval for task execution is provided in humanly readable format (such as "9h" for 9 hours) </description> <url>https://github.com/michaelgantman/Mgnt</url> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name> Michael Gantman </name> <email> [email protected] </email> </developer> </developers> <scm> <connection>scm:git:https://github.com/michaelgantman/Mgnt</connection> <developerConnection>scm:git:https://github.com/michaelgantman/Mgnt</developerConnection> <url>https://github.com/michaelgantman/Mgnt</url> </scm> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.3.2</version> </dependency> </dependencies> <build> <finalName>MgntUtils</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> <encoding>utf-8</encoding> </configuration> </plugin> </plugins> </build> </project>