]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.repo/src/org/argeo/slc/repo/RepoConstants.java
Adapt to changes in Argeo Commons
[gpl/argeo-slc.git] / org.argeo.slc.repo / src / org / argeo / slc / repo / RepoConstants.java
1 package org.argeo.slc.repo;
2
3 import org.argeo.api.NodeConstants;
4
5 /** SLC repository constants */
6 public interface RepoConstants {
7 String DEFAULT_JAVA_REPOSITORY_ALIAS = "java";
8 String DEFAULT_JAVA_REPOSITORY_LABEL = "Internal Java Repository";
9
10
11 String DEFAULT_ARTIFACTS_BASE_PATH = "/";
12 String REPO_BASEPATH = "/slc:repo";
13 String PROXIED_REPOSITORIES = REPO_BASEPATH + "/slc:sources";
14 String DISTRIBUTIONS_BASE_PATH = REPO_BASEPATH + "/slc:distributions";
15 String REPOSITORIES_BASE_PATH = REPO_BASEPATH + "/slc:repositories";
16 String DIST_DOWNLOAD_BASEPATH = "/download";
17
18 String BINARIES_ARTIFACT_ID = "binaries";
19 String SOURCES_ARTIFACT_ID = "sources";
20 String SDK_ARTIFACT_ID = "sdk";
21
22 // TODO might exists somewhere else
23 String SLC_CATEGORY_ID = "SLC-Category";
24
25 // TODO find a more generic way
26 String DEFAULT_DEFAULT_WORKSPACE = NodeConstants.SYS_WORKSPACE;
27 }