Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix plugin build settings #100

Merged
merged 1 commit into from
Apr 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext.kotlin_version = "1.3.61"
ext.python_core_version = "201.6668.13"
ext.kotlin_version = "1.3.71"
ext.python_core_version = "201.6668.115"
repositories {
mavenCentral()
}
Expand All @@ -12,7 +12,7 @@ buildscript {


plugins {
id "org.jetbrains.intellij" version "0.4.16"
id "org.jetbrains.intellij" version "0.4.18"
id "java"
id "idea"
}
Expand All @@ -21,6 +21,7 @@ intellij {
pluginName project.name
version "2020.1"
type "IC"
updateSinceUntilBuild false
downloadSources true
plugins "java", "Kotlin", "PythonCore:$python_core_version"

Expand Down
9 changes: 7 additions & 2 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
<idea-plugin url="https://github.com/koxudaxi/pydantic-pycharm-plugin">
<id>com.koxudaxi.pydantic</id>
<name>Pydantic</name>
<version>0.1.1</version>
<version>0.1.2</version>
<vendor email="koaxudai@gmail.com">Koudai Aono @koxudaxi</vendor>
<change-notes><![CDATA[
<h2>version 0.1.2</h2>
<p>BugFixes</p>
<ul>
<li>Fix plugin build settings [#100] </li>
</ul>
<h2>version 0.1.1</h2>
<p>Features</p>
<ul>
Expand Down Expand Up @@ -152,7 +157,7 @@
</ul>
]]></description>

<idea-version since-build="2020.1"/>
<idea-version since-build="201.6668.115"/>

<depends>com.intellij.modules.lang</depends>
<depends>com.intellij.modules.python</depends>
Expand Down