Skip to content

Commit

Permalink
Add a dummy test for 'buildPlugin' support (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Jun 19, 2023
1 parent e164ebe commit 8d1be58
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pom.xml
Expand Up @@ -22,6 +22,11 @@
<artifactId>metainf-services</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<scm>
Expand Down
14 changes: 14 additions & 0 deletions src/test/java/jenkins/Junit4DummyTest.java
@@ -0,0 +1,14 @@
package jenkins;

import org.junit.Test;

public class Junit4DummyTest {

@Test
public void anything() {
/*
* Intentionally blank. We just want a test that runs with JUnit so that buildPlugin() works
* in the Jenkinsfile.
*/
}
}

0 comments on commit 8d1be58

Please sign in to comment.