Skip to content

Commit

Permalink
Enable Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Dec 11, 2023
1 parent 364b8f3 commit 7ae6237
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<changelist>999999-SNAPSHOT</changelist>
<jenkins.version>2.401.3</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<spotless.check.skip>false</spotless.check.skip>
</properties>

<dependencyManagement>
Expand Down
3 changes: 2 additions & 1 deletion src/test/java/org/glassfish/jersey/JerseyTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@

public class JerseyTest {

@Rule public RealJenkinsRule rr = new RealJenkinsRule();
@Rule
public RealJenkinsRule rr = new RealJenkinsRule();

@Test
public void json() throws Throwable {
Expand Down
3 changes: 2 additions & 1 deletion src/test/java/org/glassfish/jersey/RestEasyTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@

public class RestEasyTest {

@Rule public JenkinsRule j = new JenkinsRule();
@Rule
public JenkinsRule j = new JenkinsRule();

@Test
public void withoutJackson() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

public class JacksonFeatureTest {

@Rule public RealJenkinsRule rr = new RealJenkinsRule();
@Rule
public RealJenkinsRule rr = new RealJenkinsRule();

@Test
public void smokes() throws Throwable {
Expand Down

0 comments on commit 7ae6237

Please sign in to comment.