You can download property-parser-0.0.2.jar in this page.
Apache License, Version 2.0
property-parser-0.0.2.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.github.sakserv/property-parser/pom.properties META-INF/maven/com.github.sakserv/property-parser/pom.xml META-INF/maven/org.slf4j/slf4j-api/pom.properties META-INF/maven/org.slf4j/slf4j-api/pom.xml META-INF/maven/org.slf4j/slf4j-simple/pom.properties META-INF/maven/org.slf4j/slf4j-simple/pom.xml com.github.sakserv.propertyparser.PropertyParser.class default.properties localonly.properties org.slf4j.ILoggerFactory.class org.slf4j.Logger.class org.slf4j.LoggerFactory.class org.slf4j.Marker.class org.slf4j.helpers.FormattingTuple.class org.slf4j.helpers.MarkerIgnoringBase.class org.slf4j.helpers.MessageFormatter.class org.slf4j.helpers.NOPLogger.class org.slf4j.helpers.NOPLoggerFactory.class org.slf4j.helpers.NamedLoggerBase.class org.slf4j.helpers.SubstituteLogger.class org.slf4j.helpers.SubstituteLoggerFactory.class org.slf4j.helpers.Util.class org.slf4j.impl.SimpleLogger.class org.slf4j.impl.SimpleLoggerFactory.class org.slf4j.impl.StaticLoggerBinder.class org.slf4j.spi.LoggerFactoryBinder.class
property-parser-0.0.2.pom file content.
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.sakserv</groupId> <artifactId>property-parser</artifactId> <name>Property File Parser</name> <version>0.0.2</version> <description>Helper for parsing and extracting values from properties files</description> <url>https://github.com/sakserv/property-parser</url> <developers> <developer> <name>Shane Kumpf</name> <email>sakserv@sakserv.org</email> <organization>Hortonworks</organization> <organizationUrl>http://www.hortonworks.com/</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/sakserv/property-parser.git</connection> <developerConnection>scm:git:git@github.com:sakserv/property-parser.git</developerConnection> <tag>property-parser-0.0.2</tag> <url>http://github.com/sakserv/property-parser</url> </scm> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>test/main/java</testSourceDirectory> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>test/main/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>1.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer /> <transformer /> </transformers> </configuration> </execution> </executions> <configuration> <createDependencyReducedPom>true</createDependencyReducedPom> <minimizeJar>true</minimizeJar> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>META-INF/LICENSE*</exclude> <exclude>LICENSE</exclude> </excludes> </filter> </filters> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.18</version> <configuration> <forkCount>1</forkCount> <reuseForks>false</reuseForks> <argLine>-Xms4g -Xmx4g -XX:MaxPermSize=1024M</argLine> <testFailureIgnore>false</testFailureIgnore> <skip>false</skip> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-api</artifactId> <version>1.9.2</version> </dependency> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9.2</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <repositories> <repository> <id>public.repo.hortonworks.com</id> <name>Public Hortonworks Maven Repo</name> <url>http://repo.hortonworks.com/content/groups/public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus release repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus snapshot repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <slf4j.version>1.7.10</slf4j.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit.version>4.11</junit.version> </properties> </project>
<dependency> <groupId>com.github.sakserv</groupId> <artifactId>property-parser</artifactId> <version>0.0.2</version> </dependency>
If you think the following property-parser-0.0.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download property-parser-0.0.2.jar file