Added licence. Fixed descriptions.
This commit is contained in:
parent
8a246c1319
commit
78ad242b43
13
LICENSE.TXT
Normal file
13
LICENSE.TXT
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Copyright 2019 Chris Hodges <chrisly@platon42.de>
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
@ -5,7 +5,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group 'de.platon42'
|
group 'de.platon42'
|
||||||
version '1.0-SNAPSHOT'
|
version '0.1'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@ -40,7 +40,7 @@ intellij {
|
|||||||
|
|
||||||
patchPluginXml {
|
patchPluginXml {
|
||||||
changeNotes """
|
changeNotes """
|
||||||
<h2>V0.1 (10-Mar-2019)
|
<h2>V0.1 (31-Mar-19)
|
||||||
<ul>
|
<ul>
|
||||||
<li>Initial release.
|
<li>Initial release.
|
||||||
</ul>
|
</ul>
|
||||||
@ -53,3 +53,7 @@ test {
|
|||||||
// events "passed", "skipped", "failed"
|
// events "passed", "skipped", "failed"
|
||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
publishPlugin {
|
||||||
|
token intellijPublishToken
|
||||||
|
}
|
@ -1,2 +1,3 @@
|
|||||||
kotlin.code.style=official
|
kotlin.code.style=official
|
||||||
kotlin.incremental=true
|
kotlin.incremental=true
|
||||||
|
intellijPublishToken=perm:dummy
|
@ -1,11 +1,12 @@
|
|||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
<id>de.platon42.cajon</id>
|
<id>de.platon42.cajon</id>
|
||||||
<name>Concise AssertJ Optimizing Nitpicker (Cajon)</name>
|
<name>Concise AssertJ Optimizing Nitpicker (Cajon)</name>
|
||||||
<vendor email="chrisly@platon42.de" url="http://platon42.de">Platon Computer Products</vendor>
|
<vendor email="chrisly@platon42.de" url="https://github.com/chrisly42/cajon-plugin">Platon42</vendor>
|
||||||
|
|
||||||
<description><![CDATA[
|
<description><![CDATA[
|
||||||
This plugin will add inspections and quick fixes to fully make use of the AssertJ methods
|
Cajon is an IntelliJ IDEA Plugin for shortening and optimizing AssertJ assertions.
|
||||||
to make the intention clear and concise.
|
It adds inspections and quick fixes to fully make use of the AssertJ methods
|
||||||
|
to make the intention clear and concise. It can also convert JUnit 4 assertions to AssertJ.
|
||||||
]]></description>
|
]]></description>
|
||||||
|
|
||||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
||||||
@ -35,7 +36,7 @@
|
|||||||
level="WARNING"
|
level="WARNING"
|
||||||
implementationClass="de.platon42.intellij.plugins.cajon.inspections.AssertThatSizeInspection"/>
|
implementationClass="de.platon42.intellij.plugins.cajon.inspections.AssertThatSizeInspection"/>
|
||||||
|
|
||||||
<localInspection groupPath="Java" shortName="JUnitAssertToAssertJInspection" enabledByDefault="true"
|
<localInspection groupPath="Java" shortName="JUnitAssertToAssertJ" enabledByDefault="true"
|
||||||
level="WARNING"
|
level="WARNING"
|
||||||
implementationClass="de.platon42.intellij.plugins.cajon.inspections.JUnitAssertToAssertJInspection"/>
|
implementationClass="de.platon42.intellij.plugins.cajon.inspections.JUnitAssertToAssertJInspection"/>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
Turns assertThat(condition).isEqualTo(true/false) into assertThat(condition).isTrue()/isFalse().
|
||||||
|
<!-- tooltip end -->
|
||||||
|
Also works with constant expressions and Boolean.TRUE/FALSE.
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user