jbosstools/jbosstools-central-webpage

Name: jbosstools-central-webpage

Owner: JBoss Tools

Description: JBoss Central web page

Created: 2015-04-22 23:21:22.0

Updated: 2018-04-09 14:59:22.0

Pushed: 2018-04-09 14:59:21.0

Homepage: null

Size: 298

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Red Hat Central web page

Summary

This repository contains the resources to build the Red Hat Central web page, embedded in JBoss Tools 4.3+ and JBoss Developer Studio 9+.

Install

Red Hat Central is part of JBoss Tools from which it can be downloaded and installed on its own or together with the full JBoss Tools distribution.

Get the code

The easiest way to get started with the code is to create your own fork, and then clone your fork:

$ git clone git@github.com:<you>/jbosstools-central-webpage.git
$ cd jbosstools-central-webpage
$ git remote add upstream git://github.com/jbosstools/jbosstools-central-webpage.git

At any time, you can pull changes from the upstream and merge them onto your master:

$ git checkout master               # switches to the 'master' branch
$ git pull upstream master          # fetches all 'upstream' changes and merges 'upstream/master' onto your 'master' branch
$ git push origin                   # pushes all the updates to your fork, which should be in-sync with 'upstream'

The general idea is to keep your 'master' branch in-sync with the 'upstream/master'.

Building Red Hat Central web page

To build Red Hat Central web page requires specific versions of Java (1.6+) and +Maven (3.1+). See this link for more information on how to setup, run and configure build. document will guide you through that setup.

Additionally, the following software must be globally available on the machine :

This command will run the build:

$ mvn clean verify

It will generate a jbosstools-central-webpage-{version}.zip under the target repository.

In order to test your changes within Eclipse IDE, you can run Eclipse with the following system property :

-Djboss.central.webpage.url=file:///path/to/jbosstools-central-webpage/target/jbosstools-central-webpage-0.0.1-SNAPSHOT.zip

But do not push changes without having the new and existing unit tests pass!

Contribute fixes and features

Red Hat Central web page is open source, and we welcome anybody that wants to participate and contribute!

If you want to fix a bug or make any changes, please log an issue in the JBoss Tools JIRA describing the bug or new feature and give it the component type of central. Then we highly recommend making the changes on a topic branch named with the JIRA issue number. For example, this command creates a branch for the JBIDE-1234 issue:

$ git checkout -b jbide-1234

After you're happy with your changes and a full build (with unit tests) runs successfully, commit your changes on your topic branch (with good comments). Then it's time to check for any recent changes that were made in the official repository:

$ git checkout master               # switches to the 'master' branch
$ git pull upstream master          # fetches all 'upstream' changes and merges 'upstream/master' onto your 'master' branch
$ git checkout jbide-1234           # switches to your topic branch
$ git rebase master                 # reapplies your changes on top of the latest in master
                                      (i.e., the latest from master will be the new base for your changes)

If the pull grabbed a lot of changes, you should rerun your build with tests enabled to make sure your changes are still good.

You can then push your topic branch and its changes into your public fork repository:

$ git push origin jbide-1234         # pushes your topic branch into your public fork of Red Hat Central

And then generate a pull-request where we can review the proposed changes, comment on them, discuss them with you, and if everything is good merge the changes right into the official repository.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.