Giter Site home page Giter Site logo

jbosstools-jst's Introduction

The JST Tools project

Summary

commont/jst/core

Install

JST Tools 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 [email protected]:<you>/jbosstools-jst.git
$ cd jbosstools-jst
$ git remote add upstream git://github.com/jbosstools/jbosstools-jst.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 JST Tools

To build JST Tools requires specific versions of Java (1.7+) and +Maven (3.1+). See this link for more information on how to setup, run and configure build.

This command will run the build and tests:

$ mvn clean verify

If you just want to check if things compiles/builds you can run the build without tests:

$ mvn clean verify -DskipTest=true

JST Tools Build includes specific version of Tern IDE into JST p2 repository. By default it uses mirrored p2 repository located at download.jboss.org. To build using latest Tern IDE use this command

$ mvn clean verify -Dtern.repo.url=${external.url}

Where ${external.url} should be replaced with latest SNAPSHOT p2 repository URL from Tern IDE Documentation. For example to test build with latest Tern IDE 1.0.0 replace ${external.url} with this one.

JST Tools Build is also running tests related to AngularJS features and requires access to AngularJS Eclipse tools p2 repository during the build. By default it uses mirrored p2 repository located at download.jboss.org. To run make build running tests using specific version of Angular JS Eclipse tools use this command

$ mvn clean verify -Dangularjs.repo.url=${external.url}

Where ${external.url} should be replaced with latest SNAPSHOT p2 repository URL from AngularJS Eclipse Documentation. For example to test build with latest AngularJS Eclipse 1.0.0 replace ${external.url} with this one.

Configuring Tern IDE and AngularJS Eclipse p2 repositories works only for builds from master branch. For release specific branches build fails because all dependencies to Tern IDE and AngularJS Eclipse are updated to only one version using version range [X.X.X.qualifier,X.X.X.qualifier] in plug-in's manifest files.

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

Contribute fixes and features

JST Tools 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 a component type of JST Tools provides shared plugin functionallity between JavaEE Tools and Visual Page Editor related to text editing and validation.. 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 JST Tools

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.

jbosstools-jst's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.