Download properties-2.0.rc3.jar file

Introduction

You can download properties-2.0.rc3.jar in this page.

License

The Apache Software License, Version 2.0

Type List

properties-2.0.rc3.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/ru.qatools.commons/properties/pom.properties
META-INF/maven/ru.qatools.commons/properties/pom.xml
ru.qatools.properties.Config.class
ru.qatools.properties.DefaultValue.class
ru.qatools.properties.Property.class
ru.qatools.properties.PropertyLoader.class
ru.qatools.properties.PropertyLoaderException.class
ru.qatools.properties.Required.class
ru.qatools.properties.Resource.class
ru.qatools.properties.Use.class
ru.qatools.properties.converters.ArrayConverter.class
ru.qatools.properties.converters.BooleanConverter.class
ru.qatools.properties.converters.ByteConverter.class
ru.qatools.properties.converters.CharacterConverter.class
ru.qatools.properties.converters.CharsetConverter.class
ru.qatools.properties.converters.CollectionConverter.class
ru.qatools.properties.converters.ConversionException.class
ru.qatools.properties.converters.Converter.class
ru.qatools.properties.converters.ConverterManager.class
ru.qatools.properties.converters.DoubleConverter.class
ru.qatools.properties.converters.EnumConverter.class
ru.qatools.properties.converters.FileConverter.class
ru.qatools.properties.converters.FloatConverter.class
ru.qatools.properties.converters.IntegerConverter.class
ru.qatools.properties.converters.LongConverter.class
ru.qatools.properties.converters.PathConverter.class
ru.qatools.properties.converters.RegexStringSplitter.class
ru.qatools.properties.converters.ShortConverter.class
ru.qatools.properties.converters.StringConverter.class
ru.qatools.properties.converters.StringSplitter.class
ru.qatools.properties.converters.UriConverter.class
ru.qatools.properties.converters.UrlConverter.class
ru.qatools.properties.internal.PropertiesProxy.class
ru.qatools.properties.internal.PropertyInfo.class
ru.qatools.properties.providers.DefaultPropertyProvider.class
ru.qatools.properties.providers.MapPropPathReplacerProvider.class
ru.qatools.properties.providers.PropertyProvider.class
ru.qatools.properties.providers.SysPropPathReplacerProvider.class
ru.qatools.properties.providers.SystemPropertyProvider.class
ru.qatools.properties.utils.PropertiesUtils.class
ru.qatools.properties.utils.PropsReplacer.class

Pom

properties-2.0.rc3.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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <groupId>ru.qatools.commons</groupId>
    <artifactId>properties</artifactId>
    <version>2.0.RC3</version>

    <organization>
        <name>QATools</name>
        <url>http://www.qatools.ru</url>
    </organization>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <name>Commons Properties</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.7</java.version>
    </properties>

    <issueManagement>
        <system>GitHub Issues</system>
        <url>https://github.com/qatools/properties/issues</url>
    </issueManagement>

    <scm>
        <url>https://github.com/qatools/properties</url>
        <connection>scm:git:git@github.com:qatools/properties.git</connection>
        <developerConnection>scm:git:git@github.com:qatools/properties.git</developerConnection>
      <tag>2.0.RC3</tag>
  </scm>

    <developers>
        <developer>
            <id>aandryashin</id>
            <name>Alexander Andryashin</name>
            <email>aandryashin@yandex-team.ru</email>
            <organization>Yandex</organization>
        </developer>
        <developer>
            <id>eroshenkoam</id>
            <name>Artem Eroshenko</name>
            <email>eroshenkoam@yandex-team.ru</email>
            <organization>Yandex</organization>
        </developer>
        <developer>
            <id>lanwen</id>
            <name>Merkushev Kirill</name>
            <email>lanwen@yandex-team.ru</email>
            <organization>Yandex</organization>
        </developer>
        <developer>
            <id>charlie</id>
            <name>Dmitry Baev</name>
            <email>charlie@yandex-team.ru</email>
            <organization>Yandex</organization>
        </developer>
    </developers>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.4</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.5.2</version>
                <configuration>
                    <tagNameFormat>@{project.version}</tagNameFormat>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>ru.qatools.commons</groupId>
   <artifactId>properties</artifactId>
   <version>2.0.rc3</version>
</dependency>

Download

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



Download properties-2.0.rc3.jar file




PreviousNext

Related