Download uasparser-0.6.2.jar file

Introduction

You can download uasparser-0.6.2.jar in this page.

License

GNU Lesser General Public License, v3

Type List

uasparser-0.6.2.jar file has the following types.

META-INF/LICENSE
META-INF/MANIFEST.MF
cz.mallat.uasparser.BrowserEntry.class
cz.mallat.uasparser.BrowserFamilyParser.class
cz.mallat.uasparser.CachingOnlineUpdateUASparser.class
cz.mallat.uasparser.DeviceEntry.class
cz.mallat.uasparser.MultithreadedUASparser.class
cz.mallat.uasparser.OnlineUpdateUASparser.class
cz.mallat.uasparser.OnlineUpdater.class
cz.mallat.uasparser.OsEntry.class
cz.mallat.uasparser.RobotEntry.class
cz.mallat.uasparser.SingleThreadedUASparser.class
cz.mallat.uasparser.UASparser.class
cz.mallat.uasparser.UserAgentInfo.class
cz.mallat.uasparser.fileparser.Entry.class
cz.mallat.uasparser.fileparser.PHPFileParser.class
cz.mallat.uasparser.fileparser.Section.class
user_agent_strings.txt

Pom

uasparser-0.6.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/xsd/maven-4.0.0.xsd">

  <modelVersion>4.0.0</modelVersion>

  <groupId>cz.mallat.uasparser</groupId>
  <artifactId>uasparser</artifactId>

  <version>0.6.2</version>
  <packaging>jar</packaging>

  <name>UASparser</name>
  <description>
    User Agent parser library for use with the database provided by http://user-agent-string.info/
  </description>
  <url>https://github.com/chetan/UASparser</url>

  <licenses>
    <license>
      <name>GNU Lesser General Public License, v3</name>
      <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <url>git@github.com:chetan/UASparser.git</url>
    <connection>scm:git:git@github.com:chetan/UASparser.git</connection>
    <developerConnection>scm:git:git@github.com:chetan/UASparser.git</developerConnection>
    <tag>HEAD</tag>
  </scm>

  <distributionManagement>
    <snapshotRepository>
      <id>sonatype-nexus-snapshots</id>
      <name>Sonatype Nexus snapshot repository</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
    <repository>
      <id>sonatype-nexus-staging</id>
      <name>Sonatype Nexus release repository</name>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
    </repository>
  </distributionManagement>

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

  <developers>
    <developer>
      <id>chetan</id>
      <name>Chetan Sarva</name>
      <email>csarva@pixelcop.net</email>
      <url>http://chetanislazy.com/blog/</url>
    </developer>
    <developer>
      <id>oli</id>
      <name>Oli Kurt</name>
    </developer>
    <developer>
      <id>fsiegrist</id>
      <name>Felix Siegrist</name>
      <email>felix.siegrist@inventage.com</email>
      <url>http://www.inventage.com</url>
    </developer>
  </developers>

  <build>

    <!-- Include the README, LICENSE, and COPYING files: -->
    <resources>
      <resource>
        <directory>${project.basedir}</directory>
        <includes>
          <include>README*</include>
          <include>LICENSE*</include>
          <include>COPYING*</include>
        </includes>
      </resource>
      <resource>
        <directory>src/main/resources</directory>
      </resource>
    </resources>

    <plugins>

      <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>
          <encoding>UTF-8</encoding>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <archive>
            <manifest>
              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
            </manifest>
          </archive>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2.1</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <phase>verify</phase>
            <goals>
              <goal>jar-no-fork</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9.1</version>
        <executions>
          <execution>
            <id>attach-javadoc</id>
            <phase>verify</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-deploy-plugin</artifactId>
        <version>2.8.1</version>
      </plugin>

      <!-- Release configuration: -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.4.2</version>
        <configuration>
          <mavenExecutorId>forked-path</mavenExecutorId>
        </configuration>
      </plugin>

      <!-- Only run the parent TestSuite -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.16</version>
        <configuration>
          <skipTests>${skipTests}</skipTests>
          <includes>
            <include>TestSuite.java</include>
          </includes>
        </configuration>
      </plugin>

    </plugins>
  </build>

  <profiles>

    <!-- GPG Signature on release -->
    <profile>
      <id>release-sign-artifacts</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <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>
        </plugins>
      </build>
    </profile>

  </profiles>

  <dependencies>
    <dependency>
      <groupId>net.sourceforge.jregex</groupId>
      <artifactId>jregex</artifactId>
      <version>1.2_01</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.6</version>
      <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>commons-lang</groupId>
        <artifactId>commons-lang</artifactId>
        <version>2.5</version>
        <scope>test</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>cz.mallat.uasparser</groupId>
   <artifactId>uasparser</artifactId>
   <version>0.6.2</version>
</dependency>

Download

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



Download uasparser-0.6.2.jar file




PreviousNext

Related