Table of Contents | ||
---|---|---|
|
...
UI Development
Set up the Maven Build
- Fork the Sage-Bionetworks SynapseWebClient repository into your own GitHub account: https://Create a GitHub user account if you don't already have one.
- Contributors should fork the repository and submit GitHub Pull Requests for code inclusion.
Set up Git: https://help.github.com/articles/set-up-git
Fork the Sage-Bionetworks SynapseWebClient repository into your own GitHub account: https://help.github.com/articles/fork-a-repo
- Clone the SynapseWebClient project down to your computer:
git clone https://github.com/[YOUR GITHUB NAME]/SynapseWebClient.git
- Change into the proper directory with:
cd SynapseWebClient
- Set up upstream with:
git remote add upstream https:
//github
.com
/Sage-Bionetworks/SynapseWebClient
- Fetch and merge changes from the Sage Bionetworks repo, which was named upstream:
git fetch upstream
Setup with Intellij
- Download IntelliJ community edition, it comes pre-built with GWT and Maven support.
- Install GWT SDK (install the actual SDK, not the eclipse plugin version)
- If downloading Java for the first time then download Java 8 as well.
- If you want to run Maven manually then install it from here (this will require you to add the mvn installation directory to your PATH as well), otherwise see notes here on configuring IntelliJ to run maven build.
- Configure settings.xml –- its a configuration file for running maven
- The file needs to placed in $HOME/.m2/settings.xml (e.g. michael/.m2/settings.xml)
- The file needs to placed in $HOME/.m2/settings.xml (e.g. jane/.m2/settings.xml)
This should be the content of this file:
Code Block language xml title settings.xml <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settingsxsd/settings-1.0.0.xsd"> <localRepository/> <interactiveMode/> <usePluginRegistry/> <offline/> <pluginGroups/> <servers/> <mirrors/> <proxies/> <profiles> <profile> <id>dev-environment</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <org.sagebionetworks.portal.endpoint>http://127.0.0.1:8888/Portal.html</org.sagebionetworks.portal.endpoint> <!--<org.sagebionetworks.repositoryservice.endpoint>https://repo-prod.prod.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint> <!-- insert properties described below here --> </properties> </profile> </profiles> <activeProfiles/!-- <org.sagebionetworks.repositoryservice.endpoint>https://repo-staging.prod.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint> --> </properties> </profile> </profiles> <activeProfiles/> </settings>
- Import the SWC into IntelliJ by File → New Project From Existing Sources... <Select Path to SWC Location>
- If running Maven manually run like so (see note below on saving build time by running in debug mode):
- Run 'mvn clean install'
- Run 'mvn gwt:run'
The template for the file needs to look like so-
language | xml |
---|---|
title | settings.xml |
Set up the Eclipse Build
...
...
Setup with Eclipse
- Install the latest Eclipse (for Java Development)
- Install the Google Plug-in for Eclipse. Do not include GWT SDK in the install (GWT SDK will be installed by the maven install). Do not install the Google App Engine Maven Integration.
- Install the Maven2Eclipse plugin: http://download.eclipse.org/technology/m2e/releases
- Create a GitHub user account
- Contributors should fork the repository and submit GitHub Pull Requests for code inclusion.
Set up Git: https://help.github.com/articles/set-up-git
- Import the project as a maven project
- File → Import → Maven → Existing Maven Projects
- Next, in Root Directory enter the local path to your repository clone
- Next, Finish
- You need to make sure the Import the project as a maven project
- File → Import → Maven → Existing Maven Projects
- Next, in Root Directory enter the local path to your repository clone
- Next, Finish
- You need to make sure the GWT xml files are on the classpath. All of these resources can be found in src/main/resources and src/test/resources directories.
- Right-click on portal (project name) → Build Path → Configure Build Path...
- Remove the "Exclude" filter from the source tab on the src/main/resources and src/test/resources directories.
- We need to tell the GWT Eclipse-plugin that this is a GWT project. Do this by Right-Clicking on the project in the package explorer and select: Google → Web Toolkit Settings...
- From the resulting dialog make sure the "Use Google Web Toolkit" check box is selected.
- Also make sure you are using the GWT SDK from your local maven repository (.m2/repository/com/google/gwt)
- Verify GWT can compile your code
- Right-Click on the project
- from the package explorer
- From the tree on the left of the dialog navigate to Google → Web Application
- Check the the check box: "This project has a WAR directory"
- With the "Browse" button, select "src/main/webapp"
- UN-CHECK the "Launch and deploy from this directory" This is very important, if you keep this checked then Maven will not be able to generate a clean WAR file. If you see "GWT needs to recompile" when you deploy your WAR then you probably have this box checked.
- Now make sure GWT can compile your code
- Right-Click on the project from the package explorer.
- Select Google→GWT Compile...
- Under the "Entry Point Modules" you should see "PortalDebug - org.sagebionetworks.web", if not, then add it with the add button.
- Remove the "Portal - org.sagebionetworks.web" entry.
- The first time you run this you will be asked to select the output directory where GWT will compile the code. You want this to match the Maven WAR output directory, so use "target/portal-<VERSION>-SNAPSHOT"
- If you get compilation errors from the JavaScript validator (i.e. NullPointerException), navigate to the project's properties → JavaScript → Include Path → Source, and exclude all files from the source. If an OutOfMemoryError was thrown while compiling, you can click the "Advanced" tab towards the bottom of the Google → GWT Compile window and add "-Xms512M -Xmx1524M" to the VM arguments to increase heap space.
SWC uses Sass , in order to automatically transpile to css in Eclipse (this is done automatically by maven) we need to add a custom builder: - Install sass: https://sass-lang.com/install
- Open the project properties and navigate to Builders
- Create a new (Program) Builder, using the installed sass location as the Location value (e.g. /usr/local/bin/sass)
- Set the Working directory to the SWC project (e.g. ${workspace_loc:/portal})
- Under Build Options - Allocate Console, Launch in background, and run this builder during all operations listed.
- If the GWT Compile successfully compiled, then you're ready to run the application.
- Option 1: start from within Eclipse.
- Right-Click on the project in the package explorer
- Select: Run As → GWT Development Mode with Jetty, and select Portal.html
- Set the run configuration VM Arguments to the following: "-Xms512m -Xmx2048m -XstartOnFirstThread".
- Double-click on the link provided in the Development Mode window to view the portal in your browser.
- Option 2: build and run from the command line.
- Run 'mvn clean install'
- Run 'mvn gwt:run'
- Option 1: start from within Eclipse.
Set the following arguments (might vary according to the version):
Code Block |
---|
--unix-newlines
--sourcemap=none
--style compressed
--default-encoding=UTF-8
--stop-on-error
--no-cache
--update
src/main/webapp/sass:target/portal-develop-SNAPSHOT |
Code Block |
---|
--no-source-map
--style=compressed
--unicode
--stop-on-error
--update
src/main/webapp/sass:target/portal-develop-SNAPSHOT |
Eclipse Workspace Settings
Set file encoding to UTF-8
and the line-endings (for new files) to Unix, so that text files are saved in a format that is not specific to the Windows or Mac OS and most easily shared across heterogeneous developer desktops:
- Open Preferences
- Navigate to the Workspace preferences: General → Workspace
- Change the Text File Encoding to
UTF-8
- Change the New Text File Line Delimiter to Other and select Unix from the drop-down
Troubleshooting
- Check your exclusion filters through configure build path in Eclipse to assure nothing is excluded, then refresh and clean the SWC project.
- "Could not deserialize" or similar problems in Super Dev Mode are most often fixed by re-building through the command line (running 'mvn clean install')
- (git) Pull the latest changes from the upstream repository.
- Try to rebuild your Eclipse's Portal project and keep your files in place.
- Perform a Maven update.
- Delete your project from Eclipse (leave "Delete project contents on disk" UNCHECKED)
- Go to the project root on your file system and delete .classpath, .project and the .settings/ folder
- Go to Step 6 in "UI Development above"
- .
- Select Google→GWT Compile...
- Under the "Entry Point Modules" you should see "PortalDebug - org.sagebionetworks.web", if not, then add it with the add button.
- Remove the "Portal - org.sagebionetworks.web" entry.
- The first time you run this you will be asked to select the output directory where GWT will compile the code. You want this to match the Maven WAR output directory, so use "target/portal-<VERSION>-SNAPSHOT"
- If you get compilation errors from the JavaScript validator (i.e. NullPointerException), navigate to the project's properties → JavaScript → Include Path → Source, and exclude all files from the source. If an OutOfMemoryError was thrown while compiling, you can click the "Advanced" tab towards the bottom of the Google → GWT Compile window and add "-Xms512M -Xmx1524M" to the VM arguments to increase heap space.
- SWC uses Sass , in order to automatically transpile to css in Eclipse (this is done automatically by maven) we need to add a custom builder:
- Install sass: https://sass-lang.com/install
- Open the project properties and navigate to Builders
- Create a new (Program) Builder, using the installed sass location as the Location value (e.g. /usr/local/bin/sass)
- Set the Working directory to the SWC project (e.g. ${workspace_loc:/portal})
Set the following arguments:
Code Block --no-source-map --style=compressed --unicode --stop-on-error --update src/main/webapp/sass:target/portal-develop-SNAPSHOT
- Under Build Options - Allocate Console, Launch in background, and run this builder during all operations listed.
- If the GWT Compile successfully compiled, then you're ready to run the application.
- Right-Click on the project in the package explorer
- Select: Run As → GWT Development Mode with Jetty, and select Portal.html
- Double-click on the link provided in the Development Mode window to view the portal in your browser.
- To run the unit tests:
- Right-Click on the project from the package explorer.
- Select: Run As → JUnit Test
Setup with Intellij
- Download IntelliJ community edition, it comes pre-built with GWT and Maven support.
- Install GWT SDK (install the actual SDK, not the eclipse plugin version)
- If downloading Java for the first time then download Java 8 as well.
- If you want to run Maven manually then install it from here (this will require you to add the mvn installation directory to your PATH as well), otherwise see notes here on configuring IntelliJ to run maven build.
- Import the SWC into IntelliJ by File → New Project From Existing Sources... <Select Path to SWC Location>
- If running Maven manually run like so (see note below on saving build time by running in debug mode):
- Run 'mvn clean install'
- Run 'mvn gwt:run'
Eclipse Workspace Settings verification
Set file encoding to UTF-8
and the line-endings (for new files) to Unix, so that text files are saved in a format that is not specific to the Windows or Mac OS and most easily shared across heterogeneous developer desktops:
- Open Preferences
- Navigate to the Workspace preferences: General → Workspace
- Change the Text File Encoding to
UTF-8
- Change the New Text File Line Delimiter to Other and select Unix from the drop-down
Troubleshooting
- Check your exclusion filters through configure build path in Eclipse to assure nothing is excluded, then refresh and clean the SWC project.
- (git) Pull the latest changes from the upstream repository.
- Try to rebuild your Eclipse's Portal project and keep your files in place.
- Perform a Maven update.
- Delete your project from Eclipse (leave "Delete project contents on disk" UNCHECKED)
- Go to the project root on your file system and delete .classpath, .project and the .settings/ folder
- Go to "Set up with Eclipse" or "Set up with Intellij"
If using Eclipse, verify the web app directory is correct. Right-click on the project in the package explorer and select Properties:
- From the tree on the left of the dialog navigate to Google → Web Application
- Check the the check box: "This project has a WAR directory"
- With the "Browse" button, select "src/main/webapp"
- UN-CHECK the "Launch and deploy from this directory" This is very important, if you keep this checked then Maven will not be able to generate a clean WAR file. If you see "GWT needs to recompile" when you deploy your WAR then you probably have this box checked
If this still doesn't work, or your dev mode is broken for another reason, there are some further steps you can take.
(Check out this site for more information: http://www.eclipsezone.com/eclipse/forums/t61566.html)
...
Set the repository endpoint parameters in your maven settings.xml file.
To point to staging set:
<org.sagebionetworks.repositoryservice.endpoint>https://repo-staging.prod.sagebase.org/repo/v1</org.sagebionetworks.repositoryservice.endpoint>
To point to production set:
...