Download type-parser-0.5.0.jar file

Introduction

You can download type-parser-0.5.0.jar in this page.

License

The MIT License (MIT)

Type List

type-parser-0.5.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.drapostolos/type-parser/pom.properties
META-INF/maven/com.github.drapostolos/type-parser/pom.xml
com.github.drapostolos.typeparser.DefaultDynamicParsers.class
com.github.drapostolos.typeparser.DefaultStaticParsers.class
com.github.drapostolos.typeparser.DynamicParser.class
com.github.drapostolos.typeparser.GenericType.class
com.github.drapostolos.typeparser.Helper.class
com.github.drapostolos.typeparser.InputPreprocessor.class
com.github.drapostolos.typeparser.InputPreprocessorHelper.class
com.github.drapostolos.typeparser.NoSuchRegisteredParserException.class
com.github.drapostolos.typeparser.NullStringStrategy.class
com.github.drapostolos.typeparser.NullStringStrategyHelper.class
com.github.drapostolos.typeparser.Parser.class
com.github.drapostolos.typeparser.ParserHelper.class
com.github.drapostolos.typeparser.ParserInvoker.class
com.github.drapostolos.typeparser.Parsers.class
com.github.drapostolos.typeparser.SplitStrategy.class
com.github.drapostolos.typeparser.SplitStrategyHelper.class
com.github.drapostolos.typeparser.TargetType.class
com.github.drapostolos.typeparser.TypeParser.class
com.github.drapostolos.typeparser.TypeParserBuilder.class
com.github.drapostolos.typeparser.TypeParserException.class
com.github.drapostolos.typeparser.Util.class

Pom

type-parser-0.5.0.pom file content.

<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>

	<url>http://maven.apache.org</url>
	<groupId>com.github.drapostolos</groupId>
	<artifactId>type-parser</artifactId>
	<name>type-parser</name>
	<version>0.5.0</version>
	<packaging>jar</packaging>
	<description>This is a lightweigth library that does nothing but parse a string to a given type. Supports most of the java classes, such as Integer, File, Enum, Float and also generic types as well, such as List&lt;Integer&gt;, Set&lt;File&gt; etc. Also possible to register your own parsers.</description>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	<developers>
		<developer>
			<id>drapostolos</id>
			<name>Alexander Poulikakos</name>
			<email>type-parser@labelscans.com</email>
		</developer>
	</developers>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.assertj</groupId>
			<artifactId>assertj-core</artifactId>
			<version>1.5.0</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.eclipse.m2e</groupId>
					<artifactId>lifecycle-mapping</artifactId>
					<version>1.0.0</version>
					<configuration>
						<lifecycleMappingMetadata>
							<pluginExecutions>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>org.apache.maven.plugins</groupId>
										<artifactId>maven-enforcer-plugin</artifactId>
										<versionRange>[1.0.0,)</versionRange>
										<goals>
											<goal>enforce</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore />
									</action>
								</pluginExecution>
							</pluginExecutions>
						</lifecycleMappingMetadata>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>

		<plugins>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.2.1</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>deploy</phase>
						<goals>
							<goal>jar-no-fork</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.9.1</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<phase>deploy</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<!-- explicitly define maven-deploy-plugin after other to force exec 
					order -->
				<artifactId>maven-deploy-plugin</artifactId>
				<version>2.7</version>
				<executions>
					<execution>
						<id>deploy</id>
						<phase>deploy</phase>
						<goals>
							<goal>deploy</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.4</version>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.6</version>
				<configuration>
					<skipTests>false</skipTests>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<configuration>
					<preparationGoals>clean install</preparationGoals>
					<autoVersionSubmodules>
						true
					</autoVersionSubmodules>
					<goals>deploy</goals>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.eluder.coveralls</groupId>
				<artifactId>coveralls-maven-plugin</artifactId>
				<version>2.2.0</version>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<version>2.6</version>
				<configuration>
					<format>xml</format>
					<maxmem>256m</maxmem>
					<aggregate>true</aggregate>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<licenses>
		<license>
			<name>The MIT License (MIT)</name>
			<url>http://opensource.org/licenses/MIT</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<scm>
		<connection>scm:git:https://github.com/drapostolos/type-parser.git</connection>
		<developerConnection>scm:git:https://github.com/drapostolos/type-parser.git</developerConnection>
		<url>https://github.com/drapostolos/type-parser.git</url>
	</scm>
</project>

POM Entry

<dependency>
   <groupId>com.github.drapostolos</groupId>
   <artifactId>type-parser</artifactId>
   <version>0.5.0</version>
</dependency>

Download

If you think the following type-parser-0.5.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download type-parser-0.5.0.jar file




PreviousNext

Related