Add conversion comments to pom
This commit is contained in:
parent
c04f4b6c51
commit
b5d817a8ac
|
@ -77,7 +77,6 @@
|
||||||
<option name="KEEP_BLANK_LINES_IN_DECLARATIONS" value="1" />
|
<option name="KEEP_BLANK_LINES_IN_DECLARATIONS" value="1" />
|
||||||
<option name="KEEP_BLANK_LINES_IN_CODE" value="1" />
|
<option name="KEEP_BLANK_LINES_IN_CODE" value="1" />
|
||||||
<option name="KEEP_BLANK_LINES_BEFORE_RBRACE" value="0" />
|
<option name="KEEP_BLANK_LINES_BEFORE_RBRACE" value="0" />
|
||||||
<option name="BLANK_LINES_AFTER_CLASS_HEADER" value="1" />
|
|
||||||
<option name="ALIGN_MULTILINE_PARAMETERS_IN_CALLS" value="true" />
|
<option name="ALIGN_MULTILINE_PARAMETERS_IN_CALLS" value="true" />
|
||||||
<option name="ALIGN_MULTILINE_EXTENDS_LIST" value="true" />
|
<option name="ALIGN_MULTILINE_EXTENDS_LIST" value="true" />
|
||||||
<option name="CALL_PARAMETERS_WRAP" value="5" />
|
<option name="CALL_PARAMETERS_WRAP" value="5" />
|
||||||
|
|
6
pom.xml
6
pom.xml
|
@ -16,6 +16,7 @@
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
<!-- TODO - when everything is converted to kotlin -->
|
||||||
<!--<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>-->
|
<!--<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>-->
|
||||||
<!--<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>-->
|
<!--<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>-->
|
||||||
|
|
||||||
|
@ -57,6 +58,7 @@
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<!-- TODO - remove when everything is converted to kotlin -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
@ -108,6 +110,8 @@
|
||||||
<artifactId>junit-jupiter-engine</artifactId>
|
<artifactId>junit-jupiter-engine</artifactId>
|
||||||
<version>${junit5.version}</version>
|
<version>${junit5.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- TODO - remove when all test cases converted to junit 5 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.junit.vintage</groupId>
|
<groupId>org.junit.vintage</groupId>
|
||||||
<artifactId>junit-vintage-engine</artifactId>
|
<artifactId>junit-vintage-engine</artifactId>
|
||||||
|
@ -190,6 +194,7 @@
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- TODO - remove when test cases all converted to junit 5 and assertj-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
|
@ -197,6 +202,7 @@
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- TODO - remove when test cases all converted to junit 5 and assertj-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hamcrest</groupId>
|
<groupId>org.hamcrest</groupId>
|
||||||
<artifactId>hamcrest-all</artifactId>
|
<artifactId>hamcrest-all</artifactId>
|
||||||
|
|
|
@ -26,18 +26,15 @@ class FunctionTableTest {
|
||||||
|
|
||||||
@FunctionNames("GOOD")
|
@FunctionNames("GOOD")
|
||||||
class GoodFunction(name: String) : LispFunction() {
|
class GoodFunction(name: String) : LispFunction() {
|
||||||
|
|
||||||
override fun call(argumentList: Cons): Nil = NIL
|
override fun call(argumentList: Cons): Nil = NIL
|
||||||
}
|
}
|
||||||
|
|
||||||
@FunctionNames("BAD")
|
@FunctionNames("BAD")
|
||||||
class BadFunction : LispFunction() {
|
class BadFunction : LispFunction() {
|
||||||
|
|
||||||
override fun call(argumentList: Cons): Nil = NIL
|
override fun call(argumentList: Cons): Nil = NIL
|
||||||
}
|
}
|
||||||
|
|
||||||
class UglyFunction : LispFunction() {
|
class UglyFunction : LispFunction() {
|
||||||
|
|
||||||
override fun call(argumentList: Cons): Nil = NIL
|
override fun call(argumentList: Cons): Nil = NIL
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue