Added licence. Fixed descriptions.

This commit is contained in:
Chris Hodges 2019-03-31 21:55:49 +02:00
parent 8a246c1319
commit 78ad242b43
5 changed files with 33 additions and 7 deletions

13
LICENSE.TXT Normal file
View 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.

View File

@ -5,7 +5,7 @@ plugins {
}
group 'de.platon42'
version '1.0-SNAPSHOT'
version '0.1'
repositories {
mavenCentral()
@ -40,7 +40,7 @@ intellij {
patchPluginXml {
changeNotes """
<h2>V0.1 (10-Mar-2019)
<h2>V0.1 (31-Mar-19)
<ul>
<li>Initial release.
</ul>
@ -52,4 +52,8 @@ test {
// testLogging {
// events "passed", "skipped", "failed"
// }
}
publishPlugin {
token intellijPublishToken
}

View File

@ -1,2 +1,3 @@
kotlin.code.style=official
kotlin.incremental=true
kotlin.incremental=true
intellijPublishToken=perm:dummy

View File

@ -1,11 +1,12 @@
<idea-plugin>
<id>de.platon42.cajon</id>
<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[
This plugin will add inspections and quick fixes to fully make use of the AssertJ methods
to make the intention clear and concise.
Cajon is an IntelliJ IDEA Plugin for shortening and optimizing AssertJ assertions.
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>
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
@ -35,7 +36,7 @@
level="WARNING"
implementationClass="de.platon42.intellij.plugins.cajon.inspections.AssertThatSizeInspection"/>
<localInspection groupPath="Java" shortName="JUnitAssertToAssertJInspection" enabledByDefault="true"
<localInspection groupPath="Java" shortName="JUnitAssertToAssertJ" enabledByDefault="true"
level="WARNING"
implementationClass="de.platon42.intellij.plugins.cajon.inspections.JUnitAssertToAssertJInspection"/>
</extensions>

View File

@ -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>