Download clog-1.0.2.jar file

Introduction

You can download clog-1.0.2.jar in this page.

License

Apache License Version 2.0

Type List

clog-1.0.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/in.srain.cube/clog/pom.properties
META-INF/maven/in.srain.cube/clog/pom.xml
in.srain.cube.util.CLog.class
in.srain.cube.util.clog.BuildConfig.class

Pom

clog-1.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>

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

    <groupId>in.srain.cube</groupId>
    <artifactId>clog</artifactId>
    <packaging>jar</packaging>
    <name>CLog</name>
    <version>1.0.2</version>

    <description>Simple Log for Android</description>
    <url>https://github.com/liaohuqiu/android-CLog</url>
    <inceptionYear>2014</inceptionYear>

    <scm>
        <url>https://github.com/liaohuqiu/android-CLog</url>
        <connection>scm:git:git@github.com:liaohuqiu/android-CLog.git</connection>
        <developerConnection>scm:git:git@github.com:liaohuqiu/android-CLog.git</developerConnection>
    </scm>

    <developers>
        <developer>
            <name>Huqiu Liao</name>
            <email>liaohuqiu@gmail.com</email>
            <id>liaohuqiu</id>
            <url>http://www.liaohuqiu.net</url>
            <timezone>+8</timezone>
            <roles>
                <role>developer</role>
            </roles>
        </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>

    <organization>
        <name>Huqiu Liao</name>
        <url>http://www.liaohuqiu.net</url>
    </organization>

    <issueManagement>
        <system>GitHub Issues</system>
        <url>https://github.com/liaohuqiu/android-CLog/issues</url>
    </issueManagement>

    <dependencies>
        <dependency>
            <groupId>com.google.android</groupId>
            <artifactId>android</artifactId>
            <version>4.1.1.4</version>
            <scope>provided</scope>
            <exclusions>
                <exclusion>
                    <artifactId>*</artifactId>
                    <groupId>*</groupId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

    <properties>
        <android.maven.plugin.version>3.7.0</android.maven.plugin.version>
        <android.compile.apilevel>16</android.compile.apilevel>
    </properties>

    <build>
        <finalName>${project.artifactId}</finalName>
        <sourceDirectory>src</sourceDirectory>
        <plugins>
            <plugin>
                <groupId>com.jayway.maven.plugins.android.generation2</groupId>
                <artifactId>android-maven-plugin</artifactId>
                <extensions>true</extensions>
                <version>${android.maven.plugin.version}</version>
                <configuration>
                    <sdk>
                        <path>${env.ANDROID_HOME}</path>
                        <platform>${android.compile.apilevel}</platform>
                    </sdk>
                    <sign>
                        <debug>false</debug>
                    </sign>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>in.srain.cube</groupId>
   <artifactId>clog</artifactId>
   <version>1.0.2</version>
</dependency>

Download

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



Download clog-1.0.2.jar file




PreviousNext

Related