Skip to content

Commit

Permalink
Merge branch 'master' into test-deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
dwnusbaum committed Oct 8, 2024
2 parents 3426a6a + 2c99626 commit fdc5a32
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 17 deletions.
19 changes: 4 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.88</version>
<version>5.1</version>
<relativePath/>
</parent>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
Expand Down Expand Up @@ -63,11 +63,7 @@
</pluginRepositories>
<properties>
<changelist>999999-SNAPSHOT</changelist>
<!-- TODO: Waiting for https://github.com/jenkinsci/workflow-job-plugin/pull/468 to make it to an LTS line. -->
<jenkins.version>2.479-rc35394.6ec50c7e34f9</jenkins.version>
<!-- Waiting for a release of https://github.com/jenkinsci/plugin-pom/pull/1004 -->
<jenkins-test-harness.version>2289.vfd344a_6d1660</jenkins-test-harness.version>
<hpi-plugin.version>3.58</hpi-plugin.version>
<jenkins.version>2.480</jenkins.version>
<no-test-jar>false</no-test-jar>
<useBeta>true</useBeta>
<hpi.compatibleSinceVersion>2.26</hpi.compatibleSinceVersion>
Expand All @@ -77,21 +73,14 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-weekly</artifactId>
<version>3387.v0f2773fa_3200</version>
<artifactId>bom-2.462.x</artifactId>
<version>3221.ve8f7b_fdd149d</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<!-- Waiting for a release of https://github.com/jenkinsci/plugin-pom/pull/1004 -->
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>ionicons-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ public String getFlowGraphDataAsHtml() {

@Override public void doConsoleText(StaplerRequest req, StaplerResponse rsp) throws IOException {
rsp.setContentType("text/plain;charset=UTF-8");
try (OutputStream os = rsp.getCompressedOutputStream(req)) {
try (OutputStream os = rsp.getOutputStream()) {
writeLogTo(getLogText()::writeLogTo, os);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<f:section title="${%Advanced Project Options}" icon="symbol-build-outline plugin-ionicons-api">
<f:advanced>
<f:entry title="${%Display Name}" field="displayNameOrNull">
<f:textbox checkUrl="'${rootURL}/checkDisplayName?displayName='+encodeURIComponent(this.value)+'&amp;jobName='+encodeURIComponent('${h.jsStringEscape(it.name)}')"/>
<f:textbox />
</f:entry>
</f:advanced>
</f:section>
Expand Down

0 comments on commit fdc5a32

Please sign in to comment.