Skip to content

Commit

Permalink
compitable idea version 201-202;
Browse files Browse the repository at this point in the history
release 1.0.0-20X-compatible
  • Loading branch information
zhanglei28 committed Jun 16, 2022
1 parent 6222fda commit 7b71fec
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'com.weibo'
version '1.0.0-SNAPSHOT'
version '1.0.0-20X-compatible'

repositories {
// mavenCentral()
Expand Down
10 changes: 5 additions & 5 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<idea-plugin>
<id>com.weibo.open.plugin.breeze</id>
<name>BreezeHelper</name>
<version>1.0.0</version>
<version>1.0.0-20X-compatible</version>
<vendor email="[email protected]" url="https://github.com/rayzhang0603">Ray</vendor>

<description><![CDATA[
BreezeHelper plugin is a plugin for create Breeze(https://github.com/weibreeze/breeze) schema<br>
this plugin can generate bean classes and Motan RPC service classes automatically with multi-language such as java, go, php etc. based schema file.<br>
it can generate Motan config file also<br>
BreezeHelper is a plugin for create Breeze(https://github.com/weibreeze/breeze) schema<br>
This plugin can generate bean classes and Motan RPC service classes automatically with multi-language such as java, go, php etc. based schema files.<br>
It can generate Motan config files in XML or YAML type<br>
]]></description>

<idea-version since-build="201" until-build="213.*"/>
<idea-version since-build="201" until-build="202.*"/>
<depends>com.intellij.modules.platform</depends>

<extensions defaultExtensionNs="com.intellij">
Expand Down
12 changes: 5 additions & 7 deletions src/test/testData/hello.breeze
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ service DemoService(config=MyMotanConfig, unk=xxxt){
atest();
}

message User(alias=u){
int32 uid = 1;
string name = 2;
Sex sex = 3;
}

enum Sex{
M = 1;
F = 2;
Expand All @@ -29,4 +23,8 @@ config TestConfig{
KKK = 123;
}


message User(alias = u){
int32 uid = 1;
string name = 2;
Sex sex = 3;
}

0 comments on commit 7b71fec

Please sign in to comment.