aboutsummaryrefslogtreecommitdiffstats
path: root/VPP_REPO_URL
AgeCommit message (Collapse)AuthorFilesLines
2018-09-13CSIT-1282 Migrate from Nexus.fd.io to packagecloud.ioPeter Mikus1-1/+1
Change-Id: Ib4e72dc8e3c0fedfcd702f4f97bc4f26cbc642e9 Signed-off-by: Peter Mikus <pmikus@cisco.com>
2016-10-14CSIT-351: Testing Ubuntu 16.04.1 changespmikus1-1/+1
- Update the repository to get xenial packages - Update phy topology files with new pass - Update bootstrap to use new VIRL image - Update framework to reflect 16.04 dependencies - CSIT-116: Modify VIRL username/password Change-Id: I4de44755170fd0481acef34c7c2d9c299bc300da Signed-off-by: pmikus <pmikus@cisco.com>
2016-06-21Change VPP repo URLpmikus1-1/+1
- Change VPP repo URL Change-Id: Ibe59481b1a5d0aa615ad1fbe92009415979de016 Signed-off-by: pmikus <pmikus@cisco.com>
2016-06-17Change VPP repo URLpmikus1-1/+1
- Change VPP repo URL Change-Id: I1ee06a809f15475e7871ec2840d90495b0054cc5 Signed-off-by: pmikus <pmikus@cisco.com>
2016-06-17Use common file names to store VPP stable build data in branchesJan Gelety1-0/+1
- use the same file names VPP_REPO_URL and VPP_STABLE_VER acrross branches to store the current branch repo url and stable vpp build version Change-Id: Ie7c020d5b3722bfe3eb34a374b98a29cc76676f2 Signed-off-by: Jan Gelety <jgelety@cisco.com>
span><?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2015 Cisco and/or its affiliates. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <groupId>io.fd.honeycomb.common</groupId> <artifactId>honeycomb-parent</artifactId> <version>1.19.04-RC2</version> <relativePath>../../common/honeycomb-parent</relativePath> </parent> <groupId>io.fd.honeycomb.it</groupId> <artifactId>honeycomb-it-aggregator</artifactId> <version>1.19.04-RC2</version> <name>honeycomb-it</name> <packaging>pom</packaging> <modelVersion>4.0.0</modelVersion> <modules> <module>test-model</module> <module>it-test</module> </modules> <profiles> <!-- Activate from command line with mvn <goals> -Pbenchmark --> <profile> <id>benchmark</id> <modules> <module>benchmark</module> </modules> </profile> <!-- Activate management module --> <profile> <id>management</id> <modules> <module>management</module> </modules> </profile> <!-- Activate memory benchmarking modules --> <profile> <id>memory-benchmark</id> <modules> <module>management</module> <module>memory-benchmark-scripts</module> <module>memory-benchmark</module> <module>memory-benchmark-api</module> </modules> </profile> </profiles> <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>