Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "M2E Development Environment"

Line 12: Line 12:
  
 
Import m2e-core-tests as existing maven project.
 
Import m2e-core-tests as existing maven project.
 +
 +
== Submitting patches ==
 +
 +
m2e team only accepts [http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html git-format-patch] formatted patches attached to [https://bugs.eclipse.org/bugs/enter_bug.cgi?product=m2e eclipse bugzilla]. In most cases the following command generates needed patch format from the most recent commit in the git repository.
 +
 +
<pre>
 +
  git format-patch -1
 +
</pre>
 +
 +
In addition to normal description of the change, the commit message must also include a statement that confirms that the contributor
 +
 +
# wrote 100% of the code;
 +
# that they have the right to contribute the code to Eclipse;
 +
# the file header contains the appropriate License
 +
 +
(see [http://www.eclipse.org/legal/EclipseLegalProcessPoster.pdf eclipse legal poster] for reasons why we require this).
  
 
[[Category:M2E]]
 
[[Category:M2E]]

Revision as of 00:47, 18 February 2013

M2E
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source

Download and unpack Eclipse latest SDK Juno build from http://download.eclipse.org/eclipse/downloads/ . Both 3.8 and 4.2 builds are expected to work.

Install m2e 1.2 or newer from http://download.eclipse.org/technology/m2e/releases .

Clone m2e-core repository. Committers should use ssh://YOUR_COMMITTERID@git.eclipse.org/gitroot/m2e/m2e-core.git. For read-only access use either git://git.eclipse.org/gitroot/m2e/m2e-core.git or http://git.eclipse.org/gitroot/m2e/m2e-core.git.

Import m2e-core as existing maven project. Follow onscreen instructions, allow m2e to install additional software and restart eclipse when requested.

Clone m2e-core-tests repository. Developers should use git@github.com:sonatype/m2e-core-tests.git. For read-only access use either git://github.com/sonatype/m2e-core-tests.git.

Import m2e-core-tests as existing maven project.

Submitting patches

m2e team only accepts git-format-patch formatted patches attached to eclipse bugzilla. In most cases the following command generates needed patch format from the most recent commit in the git repository.

   git format-patch -1

In addition to normal description of the change, the commit message must also include a statement that confirms that the contributor

  1. wrote 100% of the code;
  2. that they have the right to contribute the code to Eclipse;
  3. the file header contains the appropriate License

(see eclipse legal poster for reasons why we require this).

Back to the top