Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update clustering
  • Loading branch information
cxchu committed Mar 15, 2017
1 parent 8069130 commit 27470b6
Show file tree
Hide file tree
Showing 23 changed files with 1,765,243 additions and 83 deletions.
95 changes: 85 additions & 10 deletions pom.xml
Expand Up @@ -6,20 +6,95 @@
<artifactId>howtokb</artifactId> <artifactId>howtokb</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>

<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>


<name>howtokb</name> <descriptorRefs>
<url>http://maven.apache.org</url> <descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>


<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <executions>
</properties> <execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>test.java.kb.howtokb.TextToWikiHowTaskFrameTest</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>

</plugin>
</plugins>
</build>


<dependencies> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>com.googlecode.json-simple</groupId>
<artifactId>junit</artifactId> <artifactId>json-simple</artifactId>
<version>3.8.1</version> <version>1.1.1</version>
<scope>test</scope> </dependency>
</dependency> <dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.9.1</version>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>edu.washington.cs.knowitall.openie</groupId>
<artifactId>openie_2.10</artifactId>
<version>4.2.1</version>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp-models</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>niket.tool</groupId>
<artifactId>javatools</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>niket.tool</groupId>
<artifactId>postgresql</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>colt</groupId>
<artifactId>colt</artifactId>
<version>1.2.0</version>
</dependency>
</dependencies> </dependencies>
</project> </project>

0 comments on commit 27470b6

Please sign in to comment.