Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "MemoryAnalyzer/Building MAT With Tycho"

(New page: == Introduction == This page is describes how Memory Analyzer p2 repository and RCP applications can be built using Tycho. == Prerequisites == == Preparation Steps == == Build ==)
 
Line 1: Line 1:
 
== Introduction ==
 
== Introduction ==
  
This page is describes how Memory Analyzer p2 repository and RCP applications can be built using Tycho.
+
This page is describes how Memory Analyzer p2 repository and RCP applications can be built using Maven/Tycho.
  
 
== Prerequisites ==
 
== Prerequisites ==
 +
 +
=== Maven Installation ===
 +
The Memory Analyzer build requires a Maven 3.0.* installation. It is already present on the Hudson server at Eclipse. For local build one can download it from here http://maven.apache.org/download.html.
 +
 +
=== Proxy Settings ===
 +
If you need to set proxy for Maven, a snippet like this can be added to the Maven settings file:
 +
  <proxies>
 +
    <proxy>
 +
      <active>true</active>
 +
      <protocol>http</protocol>
 +
      <port>8080</port>
 +
      <host>myproxy_host</host>
 +
      <nonProxyHosts>non_proxy_hosts</nonProxyHosts>
 +
    </proxy>
 +
  </proxies>
 +
 +
More information on Maven settings: http://maven.apache.org/ref/3.0.3/maven-settings/settings.html
  
 
== Preparation Steps ==
 
== Preparation Steps ==
  
 
== Build ==
 
== Build ==

Revision as of 06:04, 27 May 2011

Introduction

This page is describes how Memory Analyzer p2 repository and RCP applications can be built using Maven/Tycho.

Prerequisites

Maven Installation

The Memory Analyzer build requires a Maven 3.0.* installation. It is already present on the Hudson server at Eclipse. For local build one can download it from here http://maven.apache.org/download.html.

Proxy Settings

If you need to set proxy for Maven, a snippet like this can be added to the Maven settings file:

 <proxies>
   <proxy>
     <active>true</active>
     <protocol>http</protocol>
     <port>8080</port>
     <host>myproxy_host</host>
     <nonProxyHosts>non_proxy_hosts</nonProxyHosts>
   </proxy>
 </proxies>

More information on Maven settings: http://maven.apache.org/ref/3.0.3/maven-settings/settings.html

Preparation Steps

Build

Back to the top