Compare commits
4 commits
f61a4ee188
...
58a721b1e2
Author | SHA1 | Date | |
---|---|---|---|
58a721b1e2 | |||
f79e950d66 | |||
af8199b550 | |||
f8f0887375 |
5 changed files with 9 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="Run Tests" type="Application" factoryName="Application" nameIsGenerated="true">
|
||||
<option name="MAIN_CLASS_NAME" value="rife.bld.extension.CheckstyleOperationTest" />
|
||||
<configuration default="false" name="CheckstyleOperationTests" type="Application" factoryName="Application" nameIsGenerated="true">
|
||||
<option name="MAIN_CLASS_NAME" value="rife.bld.extension.CheckstyleOperationTests" />
|
||||
<module name="app" />
|
||||
<method v="2">
|
||||
<option name="Make" enabled="true" />
|
|
@ -45,5 +45,5 @@ not provided by the extension. For example:
|
|||
|
||||
```java
|
||||
repositories = List.of(MAVEN_CENTRAL);
|
||||
scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 24, 0)));
|
||||
scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 25, 0)));
|
||||
```
|
||||
|
|
|
@ -26,7 +26,7 @@ public class ExamplesBuild extends BaseProject {
|
|||
|
||||
repositories = List.of(MAVEN_CENTRAL);
|
||||
|
||||
scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 24, 0)));
|
||||
scope(test).include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 25, 0)));
|
||||
|
||||
testOperation().mainClass("com.example.ExamplesTest");
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ public class CheckstyleOperationBuild extends Project {
|
|||
public CheckstyleOperationBuild() {
|
||||
pkg = "rife.bld.extension";
|
||||
name = "CheckstyleOperation";
|
||||
version = version(1, 0, 15);
|
||||
version = version(1, 0, 16, "SNAPSHOT");
|
||||
|
||||
javaRelease = 17;
|
||||
|
||||
|
@ -49,9 +49,9 @@ public class CheckstyleOperationBuild extends Project {
|
|||
scope(compile)
|
||||
.include(dependency("com.uwyn.rife2", "bld", version(2, 2, 1)));
|
||||
scope(test)
|
||||
.include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 24, 0)))
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 12, 2)))
|
||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 12, 2)))
|
||||
.include(dependency("com.puppycrawl.tools", "checkstyle", version(10, 25, 0)))
|
||||
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 13, 0)))
|
||||
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 13, 0)))
|
||||
.include(dependency("org.assertj", "assertj-core", version(3, 27, 3)));
|
||||
|
||||
javadocOperation()
|
||||
|
|
|
@ -42,7 +42,7 @@ import java.util.logging.Logger;
|
|||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.assertj.core.api.Assertions.assertThatCode;
|
||||
|
||||
class CheckstyleOperationTest {
|
||||
class CheckstyleOperationTests {
|
||||
private static final String ADD = "add";
|
||||
private static final String BAR = "bar";
|
||||
private static final String FOO = "foo";
|
Loading…
Add table
Add a link
Reference in a new issue