Skip to content

Commit

Permalink
initail commit
Browse files Browse the repository at this point in the history
  • Loading branch information
FelicitasLoeffler committed Dec 4, 2022
1 parent 49a513f commit 470c954
Show file tree
Hide file tree
Showing 32 changed files with 4,250 additions and 0 deletions.
76 changes: 76 additions & 0 deletions Mimir6.2/plugins/CFIDFExactScorer/pom.xml
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>
Loading

0 comments on commit 470c954

Please sign in to comment.