Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[epp-dev] Mixing in a dependency nightly build
  • From: "Homer, Tony" <tony.homer@xxxxxxxxx>
  • Date: Sat, 6 Jun 2020 20:41:24 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=intel.com; dmarc=pass action=none header.from=intel.com; dkim=pass header.d=intel.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=SnRP0/r8Tkw0z/tDZOnk3s6FeEyFlgco5o+aB+M5Uwk=; b=QZHrgJxMsmk/h2PdTSdZX1L3QAkkh3HX2O9T7nvbtnCPg4jp4wXd3yjrUJDTmxCpklfqgsDIP3kOq6SlXtBoSfxuRdy6fpl3S9dqRMfY3aT0S67QkjkZaZmb/xMeL6ffRat+hrYVQfoKH0nKPNYdPWTjT/1NtR6IaEdf2+fujP703Q9/yPiCwifaWVmZstrOyy0Pw6PCp+PMjnV1CUupg8Pr+IDR8WjCPa+l5CIt20l3gGgB1x3ZkcnuaoSR5wu1rGrxkwM8OvjmNPvDqgLsDkdYKonO3UlyVCJWg/enl8ESHv1rBDEPbEij2+U86SLdtS6FWyxMCr8LvIAKMHHQcg==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=ivYW5C5nYF73u+v9Yp7dWbZdt8jC2p6ILA6aBpa9Gcs8psTm3eNXGzD2OQsp9HfNiz9X8DynG9V0iE6ICgGQ5RVegtUI4cAl924wtnJ9YV3AQJYtdGIMLdQLzHKkEr2F9tgJtE5UdS0eM4lmdMaQYsbMGz4BSpUk+v/WP71ou0WC/PEhRyZk0cmc1NU1rKYynIzE4HVMGZQdWW7jgd+y4/Ehm56QPDioFRqtxQdYPMyKmpgYQO+vziZwQliQ2DcWhKUafllOTzBpRKouvBSehgeE+QXtMF3mv3MhuPvxEUNvORSLU0egF4NfS0jy42Tgsu4idRDbtBOAja69TVnUiw==
  • Delivered-to: epp-dev@xxxxxxxxxxx
  • Ironport-sdr: ted7HoqeqdBKCFT4lNDt0ngLv4onYOC2ba6wQ12Qhnh1Rvuq2Sh2cjn+9Z2M1tQb4T0NxnMETq Sk9lFfnIK+/Q==
  • Ironport-sdr: miFfc5yXjjl54DVo4NIMzX4a2FvO4AxKMwVrPaoz20nXzp37ZCUTXz2EiPCtwM1QqEqNg1b09J VsVnhFoqXxlw==
  • List-archive: <https://www.eclipse.org/mailman/private/epp-dev>
  • List-help: <mailto:epp-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/epp-dev>, <mailto:epp-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/epp-dev>, <mailto:epp-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHWPELXmBgD6O6tTU+Wp1R655K/2Q==
  • Thread-topic: Mixing in a dependency nightly build
  • User-agent: Microsoft-MacOutlook/16.37.20051002

I would like to test some changes from a nightly build.

I have master checked out and built with:

mvn clean verify -Pepp.package.cpp

 

I thought the below change would do this but it doesn’t seem to have worked.

Is there a simple way to mix in a nightly build of a dependency?

 

Thanks!

Tony Homer

 

diff --git a/releng/org.eclipse.epp.config/parent/pom.xml b/releng/org.eclipse.epp.config/parent/pom.xml

index 42be8c7e..36ae8c40 100644

--- a/releng/org.eclipse.epp.config/parent/pom.xml

+++ b/releng/org.eclipse.epp.config/parent/pom.xml

@@ -43,6 +43,7 @@

     <eclipse.simultaneous.release.name>2020-06 RC1 (4.16.0RC1)</eclipse.simultaneous.release.name>

     <!-- Upstream p2 repository, used as a source for pre-compiled build artifacts -->

     <eclipse.simultaneous.release.repository>http://download.eclipse.org/staging/2020-06/</eclipse.simultaneous.release.repository>

+    <linuxtools.docker.nightly.repository>https://download.eclipse.org/linuxtools/updates-docker-nightly/</linuxtools.docker.nightly.repository>

   </properties>

   <prerequisites>

@@ -61,6 +62,11 @@

   </pluginRepositories>

   <repositories>

+    <repository>

+      <id>linuxtools-docker-nightly</id>

+      <layout>p2</layout>

+      <url>${linuxtools.docker.nightly.repository}</url>

+    </repository>

     <repository>

       <id>eclipse-simultaneous-release</id>

       <layout>p2</layout>

 


Back to the top