{"id":20114681,"url":"https://github.com/gatenlp/gate-core","last_synced_at":"2025-04-04T15:09:52.227Z","repository":{"id":2846959,"uuid":"82916183","full_name":"GateNLP/gate-core","owner":"GateNLP","description":"The GATE Embedded core API and GATE Developer application ","archived":false,"fork":false,"pushed_at":"2024-11-06T15:40:36.000Z","size":18203,"stargazers_count":82,"open_issues_count":29,"forks_count":29,"subscribers_count":22,"default_branch":"master","last_synced_at":"2025-03-28T14:08:29.391Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GateNLP.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-02-23T10:32:41.000Z","updated_at":"2025-01-18T05:01:29.000Z","dependencies_parsed_at":"2023-07-05T20:46:09.027Z","dependency_job_id":"1023c810-bac5-499b-9f5f-09d192e2806b","html_url":"https://github.com/GateNLP/gate-core","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GateNLP%2Fgate-core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GateNLP%2Fgate-core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GateNLP%2Fgate-core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GateNLP%2Fgate-core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GateNLP","download_url":"https://codeload.github.com/GateNLP/gate-core/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247198463,"owners_count":20900080,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T18:31:17.296Z","updated_at":"2025-04-04T15:09:52.199Z","avatar_url":"https://github.com/GateNLP.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GATE Developer (including GATE Embedded)\n\n[![Javadocs](https://javadoc.io/badge/uk.ac.gate/gate-core.svg?color=brightgreen\u0026label=JavaDoc)](https://javadoc.io/doc/uk.ac.gate/gate-core)\n\nNote that this is our current development code, if you are looking for stable releases please visit https://gate.ac.uk/download/\n\nSee the [user guide](http://gate.ac.uk/userguide) for more details\n\n## Building and Running from the Source Code\n\nRequirements:\n* Java 8 or above\n* Maven 3.6.0 or above\n\nTo build the development version of gate-core:\n* clone this repository: `git clone https://github.com/GateNLP/gate-core.git` \n* change into the directory that has been created\n* compile the library and install into your local Maven cache: `mvn install`\n\nAfter this you can run the GUI from the `distro` directory as appropriate to your platform (`bin/gate.sh` on Linux, open `GATE.app` on Mac, or run `gate.exe` on Windows). When you update (`git pull`), it's the same procedure.\n\n## Using Plugins\n\nPlugins are no longer part of this `gate-core` repository - by default GATE will download its plugins from a Maven repository at runtime (the Central Repository for release versions of GATE, the [GATE Maven repository](https://repo.gate.ac.uk) for snapshots) so it is not necessary to build the plugins locally in order to use them. \n\nEach plugin by the GATE team is in its own repository on GitHub (search https://github.com/GateNLP for \"gateplugin\"), to make changes to a plugin simply clone its repository, make your changes, then `mvn install` - GATE will prefer your locally built version over one from a remote repository with the same (SNAPSHOT) version number.\n\n## Setting up a classpath for a script or program\n\nAs GATE is distributed via Maven in most cases depending on the relevant release of GATE within your own Maven project should suffice.\nIf, however, you need to depend, at compile time, on a SNAPSHOT version of GATE, or a plugin from the GATE team which has not yet\nbeen released to Maven central (either a SNAPSHOT or a release that can't be pushed to Central) then you will need to\nadd the following to the `pom.xml` of your project.\n\n```xml\n\u003crepositories\u003e\n   \u003crepository\u003e\n      \u003cid\u003egate-repo\u003c/id\u003e\n      \u003cname\u003eGATE Repo\u003c/name\u003e\n      \u003curl\u003ehttp://repo.gate.ac.uk/content/groups/public/\u003c/url\u003e\n      \u003clayout\u003edefault\u003c/layout\u003e\n      \u003creleases\u003e\u003cenabled\u003etrue\u003c/enabled\u003e\u003c/releases\u003e\n      \u003csnapshots\u003e\u003cenabled\u003etrue\u003c/enabled\u003e\u003c/snapshots\u003e\n   \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\nIf you are not using Maven or need to provide the full classpath to a command line script then\nthe `./distro` directory inside the cloned source code repository contains a file \n`gate.classpath` after running `mvn compile` which contains the paths to all the JARs in the Maven cache \nthat should be put on the classpath when using gate-core from a Java application that embeds GATE. \n\nIf GATE was installed using a pre-built distribution, then the distribution directory contains a `./lib`\ndirectory with all the JAR files that should be included in the class path.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgatenlp%2Fgate-core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgatenlp%2Fgate-core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgatenlp%2Fgate-core/lists"}