组织ID: |
edu.washington.cs.knowitall |
项目ID: |
openregex-scala_2.10 |
版本: |
1.0.4 |
最后修改时间: |
2019-10-24 02:46:32 |
包类型: |
jar |
标题: |
openregex |
描述: |
OpenRegex-Scala is a scala wrapper for an efficient and flexible library for running regular expressions over sequences of user-defined objects. |
相关URL: |
http://knowitall.github.com/openregex/ |
大小: |
22.15KB |
|
Maven引入代码: |
<dependency>
<groupId>edu.washington.cs.knowitall</groupId>
<artifactId>openregex-scala_2.10</artifactId>
<version>1.0.4</version>
</dependency>
|
Gradle引入代码: |
edu.washington.cs.knowitall:openregex-scala_2.10:1.0.4
|
下载Jar包: |
|
POM文件内容: |
<?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>edu.washington.cs.knowitall</groupId>
<artifactId>knowitall-oss</artifactId>
<version>1.0.2</version>
</parent>
<groupId>edu.washington.cs.knowitall</groupId>
<artifactId>openregex-scala_2.10</artifactId>
<version>1.0.4</version>
<packaging>jar</packaging>
<name>openregex</name>
<description>OpenRegex-Scala is a scala wrapper for 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-scala</url>
<connection>scm:git://github.com/knowitall/openregex-scala.git</connection>
<developerConnection>scm:git:git@github.com:knowitall/openregex-scala.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>2012</inceptionYear>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>edu.washington.cs.knowitall</groupId>
<artifactId>openregex</artifactId>
<version>1.0.3</version>
</dependency>
<!-- needed for transitive guava dependency -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>edu.washington.cs.knowitall.common-scala</groupId>
<artifactId>common-scala_2.10</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.specs2</groupId>
<artifactId>specs2_2.10</artifactId>
<version>1.12.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalacheck</groupId>
<artifactId>scalacheck_2.10</artifactId>
<version>1.10.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/scala</sourceDirectory>
<testSourceDirectory>src/test/scala</testSourceDirectory>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<args>
<arg>-deprecation</arg>
<arg>-unchecked</arg>
</args>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
<goal>doc-jar</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>
<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>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
edu.knowitall.openregex.Pattern$Match$$anonfun$fromJava$1.class
edu.knowitall.openregex.Pattern$Match.class
edu.knowitall.openregex.Logic.class
edu.knowitall.openregex.Pattern$Group.class
edu.knowitall.openregex.Pattern$Match$.class
edu.knowitall.openregex.Pattern$Group$.class
edu.knowitall.openregex.Pattern$Match$$anonfun$groups$1.class
edu.knowitall.openregex.Pattern$$anon$1.class
edu.knowitall.openregex.Logic$$anon$1.class
edu.knowitall.openregex.Pattern$.class
edu.knowitall.openregex.Pattern$Match$$anonfun$group$1.class
edu.knowitall.openregex.Pattern$$anonfun$findAll$1.class
edu.knowitall.openregex.Pattern.class
edu.knowitall.openregex.Logic$.class
META-INF/maven/edu.washington.cs.knowitall/openregex-scala_2.10/pom.xml
META-INF/maven/edu.washington.cs.knowitall/openregex-scala_2.10/pom.properties
|
依赖Jar: |
openregex-1.0.3.jar
/edu.washington.cs.knowitall/openregex/1.0.3
查看openregex所有版本文件
jsr305-2.0.1.jar
/com.google.code.findbugs/jsr305/2.0.1
查看jsr305所有版本文件
common-scala_2.10-1.1.0.jar
/edu.washington.cs.knowitall.common-scala/common-scala_2.10/1.1.0
查看common-scala_2.10所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
specs2_2.10-1.12.3.jar
/org.specs2/specs2_2.10/1.12.3
查看specs2_2.10所有版本文件
scalacheck_2.10-1.10.0.jar
/org.scalacheck/scalacheck_2.10/1.10.0
查看scalacheck_2.10所有版本文件
|