src/main/kotlin/de/uapcore/lightpit/types/VcsType.kt

Sat, 22 Jul 2023 22:32:04 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 22 Jul 2023 22:32:04 +0200
changeset 284
671c1c8fbf1c
permissions
-rw-r--r--

add full support for commit references - fixes #276

universe@284 1 /*
universe@284 2 * Copyright 2023 Mike Becker. All rights reserved.
universe@284 3 *
universe@284 4 * Redistribution and use in source and binary forms, with or without
universe@284 5 * modification, are permitted provided that the following conditions are met:
universe@284 6 *
universe@284 7 * 1. Redistributions of source code must retain the above copyright
universe@284 8 * notice, this list of conditions and the following disclaimer.
universe@284 9 *
universe@284 10 * 2. Redistributions in binary form must reproduce the above copyright
universe@284 11 * notice, this list of conditions and the following disclaimer in the
universe@284 12 * documentation and/or other materials provided with the distribution.
universe@284 13 *
universe@284 14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@284 15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@284 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@284 17 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@284 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@284 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@284 20 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@284 21 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@284 22 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@284 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@284 24 *
universe@284 25 */
universe@284 26
universe@284 27 package de.uapcore.lightpit.types
universe@284 28
universe@284 29 enum class VcsType {None, Mercurial, Git}

mercurial