-
Notifications
You must be signed in to change notification settings - Fork 5
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
Showing
23 changed files
with
189 additions
and
86 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,17 @@ | ||
name: Java CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
- name: Build with Maven | ||
run: mvn --batch-mode --update-snapshots package |
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,29 @@ | ||
name: Publish Docker image to Docker Hub | ||
on: | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{secrets.DOCKER_USERNAME}} | ||
password: ${{secrets.DOCKER_PASSWORD}} | ||
- uses: actions/checkout@v3 | ||
- name: Set up Maven Central Repository | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
server-id: docker.io | ||
server-username: DOCKER_USERNAME | ||
server-password: DOCKER_PASSWORD | ||
- name: Publish package | ||
run: mvn --batch-mode clean deploy | ||
env: | ||
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} | ||
DOCKER_TOKEN: ${{secrets.DOCKER_PASSWORD}} |
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
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 |
---|---|---|
@@ -1,56 +1,3 @@ | ||
WebProtégé | ||
========== | ||
# webprotege-gwt-ui | ||
|
||
What is WebProtégé? | ||
------------------- | ||
|
||
WebProtégé is a free, open source collaborative ontology development environment. | ||
|
||
It provides the following features: | ||
- Support for editing OWL 2 ontologies | ||
- A default simple editing interface, which provides access to commonly used OWL constructs | ||
- Full change tracking and revision history | ||
- Collaboration tools such as, sharing and permissions, threaded notes and discussions, watches and email notifications | ||
- Customizable user interface | ||
- Support for editing OBO ontologies | ||
- Multiple file formats for upload and download of ontologies (supported formats: RDF/XML, Turtle, OWL/XML, OBO, and others) | ||
|
||
WebProtégé runs as a Web application. End users access it through their Web browsers. | ||
They do not need to download or install any software. We encourage end-users to use | ||
|
||
https://webprotege.stanford.edu | ||
|
||
This repository houses the code for the WebProtege GWT User Interface. | ||
|
||
Building | ||
-------- | ||
|
||
To build WebProtégé from source | ||
|
||
1) Clone the github repository | ||
``` | ||
git clone https://github.com/protegeproject/webprotege-gwt-ui.git | ||
``` | ||
2) Open a terminal in the directory where you clone the repository to | ||
3) Use maven to package WebProtégé | ||
``` | ||
mvn clean package | ||
``` | ||
5) The WebProtege .war file will be built into the webprotege-server directory | ||
|
||
Running from Maven | ||
------------------ | ||
|
||
To run WebProtégé in SuperDev Mode using maven | ||
|
||
1) Start the GWT code server in one terminal window | ||
``` | ||
mvn gwt:codeserver | ||
``` | ||
2) In a different terminal window start the tomcat server | ||
``` | ||
mvn -Denv=dev tomcat7:run | ||
``` | ||
3) Start the WebProtégé Backend | ||
4) Browse to WebProtégé in a Web browser by navigating to [http://localhost:8080](http://localhost:8080) | ||
This is the UI server for WebProtégé. |
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
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
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
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
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
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
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
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
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
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
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
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
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
11 changes: 11 additions & 0 deletions
11
...rc/main/java/edu/stanford/bmir/protege/web/shared/dispatch/actions/GetUserInfoAction.java
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,11 @@ | ||
package edu.stanford.bmir.protege.web.shared.dispatch.actions; | ||
|
||
import com.fasterxml.jackson.annotation.JsonTypeName; | ||
import com.google.gwt.user.client.rpc.IsSerializable; | ||
import edu.stanford.bmir.protege.web.shared.dispatch.Action; | ||
import java.io.Serializable; | ||
|
||
@JsonTypeName("webprotege.users.GetUserInfo") | ||
public class GetUserInfoAction implements Action<GetUserInfoResult>, Serializable, IsSerializable { | ||
|
||
} |
Oops, something went wrong.