ksprojects / protobuf-jetbrains-plugin

Protobuf Support for JetBrains IDEs
https://plugins.jetbrains.com/plugin/8277
Apache License 2.0
259 stars 45 forks source link

More effective syntax support with "import". #123

Closed STRRL closed 4 years ago

STRRL commented 6 years ago

Is your feature request related to a problem? Please describe.

Related to this error: Backslashes, consecutive slashes, ".", or ".." are not allowed in the virtual path.

Here are 2 proto file: src/main/proto/model/MyEnum.proto

enum MyEnum{
    FOO = 0;
    BAR = 1;
}

src/main/proto/FoobarService.proto

import "./model/MyEnum.proto";

service FoobarService{
    rpc simpleRpc (MyEnum) returns (UnimportentMessage) {

    }
}

message UnimportentMessage{
}

It will not worked well with mvn protobuf:compile.

Describe the solution you'd like Please mark path red if it contains Backslashes, consecutive slashes, ".", or ".."

kshchepanovskyi commented 4 years ago

This issue is closed as plugin is not supported anymore. Please switch to https://github.com/jvolkman/intellij-protobuf-editor.