-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49a513f
commit 470c954
Showing
32 changed files
with
4,250 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
|
||
<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> | ||
|
||
<parent> | ||
<groupId>uk.ac.gate</groupId> | ||
<artifactId>gate-plugin-base</artifactId> | ||
<!-- this should be the version of GATE you wish to build against --> | ||
<version>8.6</version> | ||
|
||
<!-- this forces the parent to always be resolved from the repo --> | ||
<relativePath></relativePath> | ||
</parent> | ||
|
||
<!-- this is the description of this plugin --> | ||
<groupId>uk.ac.gate.mimir</groupId> | ||
<artifactId>mimir-plugin-CFIDFExactScorer</artifactId> | ||
<version>6.2-SNAPSHOT</version> | ||
|
||
<name>CFIDFExactScorer</name> | ||
<description>blbla</description> | ||
|
||
<licenses> | ||
<license> | ||
<!-- this is the license we usually use for plugins but feel free to change | ||
this if you feel a different license would be more suitable for your plugin --> | ||
<name>GNU Lesser General Public License (LGPL), Version 3</name> | ||
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
</properties> | ||
|
||
|
||
<dependencies> | ||
<!-- add any other libraries your plugin depends on. Any other GATE plugins | ||
you depend on at compile time should use the provided scope --> | ||
<dependency> | ||
<groupId>uk.ac.gate.mimir</groupId> | ||
<artifactId>mimir-core</artifactId> | ||
<version>6.2-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
|
||
</dependency> | ||
|
||
|
||
|
||
<!-- https://mvnrepository.com/artifact/junit/junit --> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
</dependency> | ||
|
||
|
||
<dependency> | ||
<groupId>com.fasterxml.jackson.dataformat</groupId> | ||
<artifactId>jackson-dataformat-csv</artifactId> | ||
<version>2.10.3</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>de.unijena.cs.fusion</groupId> | ||
<artifactId>slibAPI</artifactId> | ||
<version>0.0.1</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
</project> |
Oops, something went wrong.