aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/maven/MavenRepository.java
blob: 189783d72ff37a3b94765e8d276a21cf893b7e22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.maven;

/**
 * A Maven repository which keeps released artifacts.
 *
 * @author jonmv
 */
public interface MavenRepository {

    /** Returns metadata about all releases of a specific artifact to this repository. */
    Metadata metadata();

    /** Returns the id of the artifact whose releases this tracks. */
    ArtifactId artifactId();

}