组织ID: |
edu.usc.ir |
项目ID: |
sentiment-analysis-parser |
版本: |
0.1 |
最后修改时间: |
2018-07-26 10:17:58 |
包类型: |
jar |
标题: |
SentimentAnalysisParser |
描述: |
Combines Apache OpenNLP and Apache Tika and provides facilities for automatically deriving sentiment from text. |
相关URL: |
https://github.com/USCDataScience/SentimentAnalysisParser |
大小: |
28.05KB |
|
Maven引入代码: |
<dependency>
<groupId>edu.usc.ir</groupId>
<artifactId>sentiment-analysis-parser</artifactId>
<version>0.1</version>
</dependency>
|
Gradle引入代码: |
edu.usc.ir:sentiment-analysis-parser:0.1
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to
You under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<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>edu.usc.ir</groupId>
<artifactId>sentiment-analysis-parser</artifactId>
<version>0.1</version>
<name>SentimentAnalysisParser</name>
<description>Combines Apache OpenNLP and Apache Tika and provides facilities for automatically deriving sentiment from text.</description>
<url>https://github.com/USCDataScience/SentimentAnalysisParser</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Anastasija Mensikova</name>
<organization>Trinity</organization>
</developer>
</developers>
<scm>
<url>https://github.com/USCDataScience/SentimentAnalysisParser.git</url>
<connection>scm:git:git://github.com/USCDataScience/SentimentAnalysisParser.git</connection>
</scm>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/tika</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version>
<executions>
<execution>
<id>enforce-java</id>
<phase>validate</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.7.0,1.8)</version>
<message>Error:: Please use jdk7 for compilation.</message>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
<finalName>sentiment</finalName>
<appendAssemblyId>false</appendAssemblyId>
<archive>
<manifest>
<mainClass>edu.usc.ir.sentiment.analysis.cmdline.CLI</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<excludes>
<exclude>META-INF/services/org.apache.tika.*</exclude>
<exclude>org/apache/tika/**.*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<stagingProfileId>5333d49500d264</stagingProfileId>
</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>
<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-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin> -->
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>1.13</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-parsers</artifactId>
<version>1.13</version>
<exclusions>
<exclusion>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-langdetect</artifactId>
<version>1.13</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-batch</artifactId>
<version>1.13</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
<version>1.6.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
edu.usc.ir.sentiment.analysis.cmdline.CLI.class
edu.usc.ir.sentiment.analysis.cmdline.TikaTool.class
opennlp.tools.formats.SentimentSampleStreamFactory.class
opennlp.tools.sentiment.SentimentEventStream$1.class
opennlp.tools.sentiment.SentimentModel.class
org.apache.tika.parser.sentiment.analysis.SentimentParser.class
edu.usc.ir.sentiment.analysis.cmdline.TikaTool$NoDocumentMetHandler.class
opennlp.tools.sentiment.SentimentContextGenerator.class
opennlp.tools.sentiment.SentimentFactory.class
opennlp.tools.sentiment.SentimentSampleStream.class
META-INF/maven/edu.usc.ir/sentiment-analysis-parser/pom.xml
edu.usc.ir.sentiment.analysis.cmdline.SentimentConstant.class
opennlp.tools.sentiment.SentimentME.class
META-INF/maven/edu.usc.ir/sentiment-analysis-parser/pom.properties
edu.usc.ir.sentiment.analysis.cmdline.SentimentTrainerTool.class
opennlp.tools.sentiment.SentimentEventStream.class
opennlp.tools.sentiment.SentimentSample.class
org/apache/tika/mime/custom-mimetypes.xml
|
依赖Jar: |
tika-core-1.13.jar
/org.apache.tika/tika-core/1.13
查看tika-core所有版本文件
tika-parsers-1.13.jar
/org.apache.tika/tika-parsers/1.13
查看tika-parsers所有版本文件
tika-langdetect-1.13.jar
/org.apache.tika/tika-langdetect/1.13
查看tika-langdetect所有版本文件
tika-batch-1.13.jar
/org.apache.tika/tika-batch/1.13
查看tika-batch所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
opennlp-tools-1.6.0.jar
/org.apache.opennlp/opennlp-tools/1.6.0
查看opennlp-tools所有版本文件
slf4j-log4j12-1.7.21.jar
/org.slf4j/slf4j-log4j12/1.7.21
查看slf4j-log4j12所有版本文件
jul-to-slf4j-1.7.21.jar
/org.slf4j/jul-to-slf4j/1.7.21
查看jul-to-slf4j所有版本文件
jcl-over-slf4j-1.7.21.jar
/org.slf4j/jcl-over-slf4j/1.7.21
查看jcl-over-slf4j所有版本文件
log4j-1.2.17.jar
/log4j/log4j/1.2.17
查看log4j所有版本文件
|