Skip to content

Commit

Permalink
2018.* IDEA support, build.gradle and plugin.xml dependencies updated
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-inv committed Oct 28, 2018
1 parent 6d3c8a8 commit 3f285bc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
13 changes: 10 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
plugins {
id 'org.jetbrains.intellij' version '0.2.5'
id 'org.jetbrains.intellij' version '0.3.12'
}

group 'com.alivanov.intellij.plugins.liquigen'
version '0.0.5'

apply plugin: "java"

repositories {
Expand All @@ -15,7 +18,11 @@ dependencies {
}

intellij {
version='IU-2017.3'
version = 'IU-2018.1'
plugins = ['DatabaseTools']
pluginName 'liquigen'
pluginName = 'Liquigen'
}

patchPluginXml {
untilBuild = '182.*'
}
3 changes: 1 addition & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
rootProject.name = 'liquigen'

rootProject.name = 'liquigen'
9 changes: 1 addition & 8 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<idea-plugin>
<id>com.alivanov.intellij.plugins.liquigen</id>
<name>Liquigen</name>
<version>0.0.4</version>
<vendor email="[email protected]">Alexey Ivanov</vendor>

<description><![CDATA[
Expand Down Expand Up @@ -37,14 +36,8 @@
]]>
</change-notes>

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<idea-version since-build="173.*"/>

<depends>com.intellij.modules.ultimate</depends>
<depends>com.intellij.database</depends>
<depends optional="true">com.intellij.modules.ultimate</depends>

<extensions defaultExtensionNs="com.intellij">
</extensions>

<actions>
<group id="LiquibaseGroup" text="Liquibase" popup="true">
Expand Down

0 comments on commit 3f285bc

Please sign in to comment.