WARNING: This repository in development. All interfaces are subject to change.
Smithy IntelliJ provides IDE integration for the Smithy IDL within IntelliJ IDEA. It utilizes smithy-language-server for its Language Server Protocol implementation.
When using the Smithy Intellij Plugin, dependencies used by the model within the workspace must be specified, so that
the plugin can inject them when launching the Smithy Language Server. Dependencies must be specified in the workspace
at /build/smithy-dependencies.json
or .smithy.json
, listing all the required artifacts along with their source
repositories:
{
"artifacts": [
"software.amazon.smithy:smithy-aws-traits:1.7.0",
"software.amazon.smithy:smithy-aws-iam-traits:1.7.0",
"com.example.my-traits:0.0.1"
],
"repositories": [
"file:/Users/me/.m2/repository/",
"https://repo.maven.apache.org/maven2/"
]
}
Clone the smithy-language-server repository to a separate directory:
git clone [email protected]:awslabs/smithy-language-server.git ~/smithy-language-server
Change to that directory, and build and publish the locally:
cd ~/smithy-language-server && ./gradlew build publishToMavenLocal
From this plugin directory, use ideRun
task to start a sandboxed instance of IntelliJ with the plugin loaded:
./gradlew runIde
The classes located at /src/main/gen
are generated. SmithyLexer
is generated from the Smithy.Flex
file via the
generateSmithyLexer
Gradle task. SmithyParser
and its PSI implementation classes are generated from the
Smithy.bnf
file via the generateSmithyParser
Gradle task. The generateSmithyParser
task requires JDK11 or higher.
When using JDK11 or higher, both tasks will be run prior to compilation during a standard Gradle build.
See CONTRIBUTING for more information.
This project is licensed under the Apache-2.0 License.