Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c3da7c49e594500b3568d897a575e86d0ea30a72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.releng.internal.version;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;

import java.util.Map;

/**
 * @author Eike Stepper
 */
public interface IVersionBuilderArguments extends Map<String, String>
{
  public static final String DEFAULT_VALIDATOR_CLASS_NAME = "org.eclipse.emf.cdo.releng.version.digest.DigestValidator$BuildModel";

  public static final String RELEASE_PATH_ARGUMENT = "release.path";

  public static final String VALIDATOR_CLASS_ARGUMENT = "validator.class";

  public static final String IGNORE_MALFORMED_VERSIONS_ARGUMENT = "ignore.malformed.versions";

  public static final String IGNORE_SCHEMA_BUILDER_ARGUMENT = "ignore.schema.builder";

  public static final String IGNORE_DEBUG_OPTIONS_ARGUMENT = "ignore.debug.options";

  public static final String IGNORE_DEPENDENCY_RANGES_ARGUMENT = "ignore.missing.dependency.ranges";

  public static final String IGNORE_EXPORT_VERSIONS_ARGUMENT = "ignore.missing.export.versions";

  public static final String IGNORE_CONTENT_REDUNDANCY_ARGUMENT = "ignore.feature.content.redundancy";

  public static final String IGNORE_CONTENT_CHANGES_ARGUMENT = "ignore.feature.content.changes";

  public String getReleasePath();

  public String getValidatorClassName();

  public boolean isIgnoreMalformedVersions();

  public boolean isIgnoreSchemaBuilder();

  public boolean isIgnoreDebugOptions();

  public boolean isIgnoreMissingDependencyRanges();

  public boolean isIgnoreMissingExportVersions();

  public boolean isIgnoreFeatureContentRedundancy();

  public boolean isIgnoreFeatureContentChanges();

  public void applyTo(IProject project) throws CoreException;
}

Back to the top