From 78ad242b43279fcc2afc1f406aecad7794e58d5a Mon Sep 17 00:00:00 2001 From: chrisly42 Date: Sun, 31 Mar 2019 21:55:49 +0200 Subject: [PATCH] Added licence. Fixed descriptions. --- LICENSE.TXT | 13 +++++++++++++ build.gradle | 8 ++++++-- gradle.properties | 3 ++- src/main/resources/META-INF/plugin.xml | 9 +++++---- .../AssertThatBooleanIsTrueOrFalse.html | 7 +++++++ 5 files changed, 33 insertions(+), 7 deletions(-) create mode 100644 LICENSE.TXT create mode 100644 src/main/resources/inspectionDescriptions/AssertThatBooleanIsTrueOrFalse.html diff --git a/LICENSE.TXT b/LICENSE.TXT new file mode 100644 index 0000000..d50b2aa --- /dev/null +++ b/LICENSE.TXT @@ -0,0 +1,13 @@ +Copyright 2019 Chris Hodges + +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. \ No newline at end of file diff --git a/build.gradle b/build.gradle index d77746e..27902f7 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { } group 'de.platon42' -version '1.0-SNAPSHOT' +version '0.1' repositories { mavenCentral() @@ -40,7 +40,7 @@ intellij { patchPluginXml { changeNotes """ -

V0.1 (10-Mar-2019) +

V0.1 (31-Mar-19)
  • Initial release.
@@ -52,4 +52,8 @@ test { // testLogging { // events "passed", "skipped", "failed" // } +} + +publishPlugin { + token intellijPublishToken } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 3352da6..9f9e7e0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,3 @@ kotlin.code.style=official -kotlin.incremental=true \ No newline at end of file +kotlin.incremental=true +intellijPublishToken=perm:dummy \ No newline at end of file diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index ae6cef5..4ab41ea 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -1,11 +1,12 @@ de.platon42.cajon Concise AssertJ Optimizing Nitpicker (Cajon) - Platon Computer Products + Platon42 @@ -35,7 +36,7 @@ level="WARNING" implementationClass="de.platon42.intellij.plugins.cajon.inspections.AssertThatSizeInspection"/> - diff --git a/src/main/resources/inspectionDescriptions/AssertThatBooleanIsTrueOrFalse.html b/src/main/resources/inspectionDescriptions/AssertThatBooleanIsTrueOrFalse.html new file mode 100644 index 0000000..6c72118 --- /dev/null +++ b/src/main/resources/inspectionDescriptions/AssertThatBooleanIsTrueOrFalse.html @@ -0,0 +1,7 @@ + + +Turns assertThat(condition).isEqualTo(true/false) into assertThat(condition).isTrue()/isFalse(). + +Also works with constant expressions and Boolean.TRUE/FALSE. + + \ No newline at end of file