Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Eclipse plugins for working with JCR and ModeShpae

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE.txt
EPL-1.0
LICENSE-EPL.txt
LGPL-2.1
LICENSE-LGPL.txt
NotificationsYou must be signed in to change notification settings

elvisisking/modeshape-tools

 
 

Summary

This is the official Git repository for the open sourceModeShape Tools project.

ModeShape Tools is a set of Eclipse plugins for working withModeShape and Java Content Repositories (JCRs).ModeShape Tools is part of theJBoss Tools community of projects.

The currentModeShape Tools features include:

  • the ability to publish/upload resources from Eclipse workspaces toModeShape repositories, and
  • the ability to create and edit Compact Node Type Definition (CND) files using the included CND form-based editor. The CND editor does not require a connection to a ModeShape or any other JCR repository.

Install

ModeShape Tools is installed into Eclipse by following these steps:

  1. Start up Eclipse 3.7
  2. SelectHelp > Install New Software… > Add...
  3. In theAdd Repository dialog, enter a name, for instance "ModeShape Tools Update-Site" and enter the URL for theupdate-site. Then selectOK to close the dialog.
  4. After the update-site loads select one or more of theModeShape Tools features you want to install.

Get the code

The easiest way to get started with the code is tocreate your own fork of this repository, and then clone your fork:

$ git clonegit@github.com:/modeshape-tools.git$ cd modeshape-tools$ git remote add upstream git://github.com/ModeShape/modeshape-tools.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 ModeShape Tools

To buildModeShape Tools requires specific versions of Java and Maven. Also, there is some Maven setup. TheHow to Build JBoss Tools with Maven 3 document will guide you through that setup. Specifically, perform these steps this document identifies:

  1. adding thejboss-default profile to your Mavensettings.xml file, and
  2. setting yourMAVEN_OPTS environment variable.

This command will run the build:

mvn clean install -Punified.target -Pjbosstools-staging-aggregate

If you want, your builds can skip the tests by adding this parameter to the above build command:-Dmaven.test.skip=true.But always run the tests before any commits.

Contribute fixes and features

ModeShape 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 theModeShape JIRA describing the bug or new feature and give it a component type ofTools. 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 MODE-1234 issue:

$ git checkout -b mode-1234

After you're happy with your changes and a full build (with unit tests) runs successfully, commit your changes on your topic branch (usingreally 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 mode-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 to make sure your changes are still good. You can then eithercreate patches (one file per commit, saved in~/mode-1234) with

$ git format-patch -M -o ~/mode-1234 origin/master

and upload them to the JIRA issue, or you can push your topic branch and its changes into your public fork repository

$ git push origin mode-1234         # pushes your topic branch into your public fork of ModeShape Tools

andgenerate a pull-request for your changes.

We prefer pull-requests, because we can review the proposed changes, comment on them, discuss them with you, and likely merge the changes right into the official repository.

About

Eclipse plugins for working with JCR and ModeShpae

Resources

License

Unknown and 2 other licenses found

Licenses found

Unknown
LICENSE.txt
EPL-1.0
LICENSE-EPL.txt
LGPL-2.1
LICENSE-LGPL.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java96.2%
  • HTML3.8%

[8]ページ先頭

©2009-2025 Movatter.jp