diff --git a/build.gradle b/build.gradle index 223b3f4..fe27334 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { } group 'com.weibo' -version '1.0.0-SNAPSHOT' +version '1.0.0-20X-compatible' repositories { // mavenCentral() diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index ffa536f..d6e1274 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -1,16 +1,16 @@ com.weibo.open.plugin.breeze BreezeHelper - 1.0.0 + 1.0.0-20X-compatible Ray - this plugin can generate bean classes and Motan RPC service classes automatically with multi-language such as java, go, php etc. based schema file.
- it can generate Motan config file also
+ BreezeHelper is a plugin for create Breeze(https://github.com/weibreeze/breeze) schema
+ This plugin can generate bean classes and Motan RPC service classes automatically with multi-language such as java, go, php etc. based schema files.
+ It can generate Motan config files in XML or YAML type
]]>
- + com.intellij.modules.platform diff --git a/src/test/testData/hello.breeze b/src/test/testData/hello.breeze index b858532..1bb9338 100644 --- a/src/test/testData/hello.breeze +++ b/src/test/testData/hello.breeze @@ -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; @@ -29,4 +23,8 @@ config TestConfig{ KKK = 123; } - +message User(alias = u){ + int32 uid = 1; + string name = 2; + Sex sex = 3; +}