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

jreleaser / jreleaser / #510

27 Jul 2025 12:31PM UTC coverage: 45.783% (-3.6%) from 49.39%
#510

push

github

aalmiray
feat(packagers): Stage distribution publication in a fixed directory

Closes #1943

12 of 25 new or added lines in 4 files covered. (48.0%)

2208 existing lines in 190 files now uncovered.

23924 of 52255 relevant lines covered (45.78%)

0.46 hits per line

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

0.0
/sdks/jreleaser-http-java-sdk/src/main/java/org/jreleaser/sdk/http/HttpAnnouncerBuilderFactory.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.http;
19

20
import org.jreleaser.model.spi.announce.AnnouncerBuilderFactory;
21
import org.kordamp.jipsy.annotations.ServiceProviderFor;
22

23
/**
24
 * @author Andres Almiray
25
 * @since 1.3.0
26
 */
27
@ServiceProviderFor(AnnouncerBuilderFactory.class)
UNCOV
28
public class HttpAnnouncerBuilderFactory implements AnnouncerBuilderFactory<HttpAnnouncer, HttpAnnouncerBuilder> {
×
29
    @Override
30
    public String getName() {
UNCOV
31
        return org.jreleaser.model.api.announce.HttpAnnouncers.TYPE;
×
32
    }
33

34
    @Override
35
    public HttpAnnouncerBuilder getBuilder() {
UNCOV
36
        return new HttpAnnouncerBuilder();
×
37
    }
38
}
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