• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

jreleaser / jreleaser / #475

03 Apr 2025 10:50AM UTC coverage: 40.322% (-8.9%) from 49.193%
#475

push

github

aalmiray
feat(release): Support Forgejo as releaser

Closes #1842

Closes #1843

182 of 1099 new or added lines in 45 files covered. (16.56%)

4239 existing lines in 333 files now uncovered.

20797 of 51577 relevant lines covered (40.32%)

0.4 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/sdks/jreleaser-forgejo-java-sdk/src/main/java/org/jreleaser/sdk/forgejo/api/Repository.java
1
/*
2
 * SPDX-License-Identifier: Apache-2.0
3
 *
4
 * Copyright 2020-2025 The JReleaser authors.
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 *     https://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
package org.jreleaser.sdk.forgejo.api;
19

20
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
21

22
/**
23
 * @author Andres Almiray
24
 * @since 1.18.0
25
 */
26
@JsonIgnoreProperties(ignoreUnknown = true)
NEW
27
public class Repository {
×
28
    private Integer id;
29
    private String name;
30
    private String fullName;
31
    private String htmlUrl;
32
    private String cloneUrl;
33

34
    public Integer getId() {
NEW
35
        return id;
×
36
    }
37

38
    public void setId(Integer id) {
NEW
39
        this.id = id;
×
NEW
40
    }
×
41

42
    public String getName() {
NEW
43
        return name;
×
44
    }
45

46
    public void setName(String name) {
NEW
47
        this.name = name;
×
NEW
48
    }
×
49

50
    public String getFullName() {
NEW
51
        return fullName;
×
52
    }
53

54
    public void setFullName(String fullName) {
NEW
55
        this.fullName = fullName;
×
NEW
56
    }
×
57

58
    public String getHtmlUrl() {
NEW
59
        return htmlUrl;
×
60
    }
61

62
    public void setHtmlUrl(String htmlUrl) {
NEW
63
        this.htmlUrl = htmlUrl;
×
NEW
64
    }
×
65

66
    public String getCloneUrl() {
NEW
67
        return cloneUrl;
×
68
    }
69

70
    public void setCloneUrl(String cloneUrl) {
NEW
71
        this.cloneUrl = cloneUrl;
×
NEW
72
    }
×
73
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc