Download openregex-1.1.1.jar file

Introduction

You can download openregex-1.1.1.jar in this page.

License

LGPL (GNU Lesser General Public License)

Type List

openregex-1.1.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/edu.washington.cs.knowitall/openregex/pom.properties
META-INF/maven/edu.washington.cs.knowitall/openregex/pom.xml
edu.washington.cs.knowitall.logic.ArgFactory.class
edu.washington.cs.knowitall.logic.Expression.class
edu.washington.cs.knowitall.logic.LogicException.class
edu.washington.cs.knowitall.logic.LogicExpression.class
edu.washington.cs.knowitall.logic.LogicExpressionParser.class
edu.washington.cs.knowitall.logic.LogicExpressionParsers.class
edu.washington.cs.knowitall.regex.Expression.class
edu.washington.cs.knowitall.regex.ExpressionFactory.class
edu.washington.cs.knowitall.regex.FiniteAutomaton.class
edu.washington.cs.knowitall.regex.Match.class
edu.washington.cs.knowitall.regex.RegexException.class
edu.washington.cs.knowitall.regex.RegularExpression.class
edu.washington.cs.knowitall.regex.RegularExpressionParser.class
edu.washington.cs.knowitall.regex.RegularExpressionParsers.class

Pom

openregex-1.1.1.pom file content.

<?xml version="1.0"?>
<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>edu.washington.cs.knowitall</groupId>
  <artifactId>openregex</artifactId>
  <version>1.1.1</version>
  <packaging>jar</packaging>
  <name>openregex</name>
  <description>OpenRegex is an efficient and flexible library for running regular expressions over sequences of user-defined objects.</description>
  <url>http://knowitall.github.com/openregex/</url>
  <licenses>
    <license>
      <name>LGPL (GNU Lesser General Public License)</name>
      <url>http://www.gnu.org/licenses/lgpl.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>https://github.com/knowitall/openregex</url>
    <connection>scm:git://github.com/knowitall/openregex.git</connection>
    <developerConnection>scm:git:git@github.com:knowitall/openregex.git</developerConnection>
  </scm>
  <organization>
    <name>University of Washington CSE</name>
    <url>http://cs.washington.edu/</url>
  </organization>
  <developers>
    <developer>
      <name>Michael Schmitz</name>
    </developer>
  </developers>
  <inceptionYear>2010</inceptionYear>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>2.0.1</version>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>15.0</version>
    </dependency>
    <!-- Testing -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.scala-lang</groupId>
      <artifactId>scala-library</artifactId>
      <version>2.10.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.specs2</groupId>
      <artifactId>specs2_2.10</artifactId>
      <version>2.2.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.scalacheck</groupId>
      <artifactId>scalacheck_2.10</artifactId>
      <version>1.10.1</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>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>net.alchim31.maven</groupId>
        <artifactId>scala-maven-plugin</artifactId>
        <version>3.0.1</version>
        <configuration>
          <args>
            <arg>-deprecation</arg>
            <arg>-unchecked</arg>
          </args>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>testCompile</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.1</version>
        <configuration>
          <goals>deploy</goals>
          <pushChanges>false</pushChanges>
          <localCheckout>true</localCheckout>
          <scmCommentPrefix>(release) </scmCommentPrefix>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>edu.washington.cs.knowitall</groupId>
   <artifactId>openregex</artifactId>
   <version>1.1.1</version>
</dependency>

Download

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



Download openregex-1.1.1.jar file




PreviousNext

Related