added dotfiles

This commit is contained in:
Jonas_Jones 2022-09-18 18:20:31 +02:00
parent f6ad05459b
commit fd3d05434f
466 changed files with 27935 additions and 1 deletions

View file

@ -0,0 +1,14 @@
<?xml version="1.0"?>
<migrationMap>
<name value="JUnit (4.x -&gt; 5.0)" />
<description value="For transferring the JUnit 4 test annotations to the new jupiter ones, may result in red code! Assertions won't be migrated.
Please see the 'Java | JUnit issues | JUnit 4 test can be JUnit 5' inspection to migrate only tests which can be converted fully automatically." />
<entry oldName="org.junit.Before" newName="org.junit.jupiter.api.BeforeEach" type="class"/>
<entry oldName="org.junit.BeforeClass" newName="org.junit.jupiter.api.BeforeAll" type="class"/>
<entry oldName="org.junit.After" newName="org.junit.jupiter.api.AfterEach" type="class"/>
<entry oldName="org.junit.AfterClass" newName="org.junit.jupiter.api.AfterAll" type="class"/>
<entry oldName="org.junit.Test" newName="org.junit.jupiter.api.Test" type="class"/>
<entry oldName="org.junit.Ignore" newName="org.junit.jupiter.api.Disabled" type="class"/>
</migrationMap>

View file

@ -0,0 +1,8 @@
<?xml version="1.0"?>
<migrationMap>
<name value="JavaFX (8 -&gt; 9)"/>
<description value="Fix imports of JavaFX API classes according to JEP 253. Note that a few classes are no longer public."/>
<entry oldName="com.sun.javafx.scene.control.skin" newName="javafx.scene.control.skin" type="package"/>
<entry oldName="com.sun.javafx.css" newName="javafx.css" type="package"/>
</migrationMap>