Skip to content

Commit bd31a5f

Browse files
authored
Merge pull request #36 from lstreckeisen/CMI-112-Update-READMEs
update plugin requirements & add poc note
2 parents e877783 + ef2fd07 commit bd31a5f

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
<!-- Plugin description -->
22
![Context Mapper](https://raw.githubusercontent.com/wiki/ContextMapper/context-mapper-dsl/logo/cm-logo-github-small.png)
33
# Context Mapper IntelliJ Plugin
4-
[ContextMapper](https://contextmapper.org/) is an open source tool providing a Domain-specific Language based on Domain-Driven Design (DDD) patterns for context mapping and service decomposition.
4+
5+
> **_NOTE:_** This plugin is a proof of concept. It does not support all Context Mapper features yet.
6+
7+
[Context Mapper](https://contextmapper.org/) is an open source tool providing a Domain-specific Language based on Domain-Driven Design (DDD) patterns for context mapping and service decomposition.
58

69
## System Requirements
7-
To use the ContextMapper IntelliJ plugin you need the following tools (besides IntelliJ and our extension) installed locally:
10+
To use the Context Mapper IntelliJ plugin you need the following tools (besides IntelliJ and our extension) installed locally:
811

912
* [Oracle Java](https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) or [OpenJDK](https://openjdk.java.net/) (JRE 11 or newer)
1013
* [Node.js](https://nodejs.org/en/download) (v22)
11-
* If you want to use our [Context Map generator](https://contextmapper.org/docs/context-map-generator/) you need to have [Graphviz](https://www.graphviz.org/) installed on your system.
12-
* Ensure that the binaries are part of the _PATH_ environment variable and can be called from the terminal.
13-
* Especially on Windows this is not the case after the installation of [Graphviz](https://www.graphviz.org/). The default installation path is
14-
`C:\Program Files (x86)\GraphvizX.XX`, which means you have to add `C:\Program Files (x86)\GraphvizX.XX\bin` to your _PATH_ variable.
15-
* Maybe you want to install the [PlantUML extension](https://marketplace.visualstudio.com/items?itemName=jebbs.plantuml) for the generated PlantUML diagrams.
14+
* Maybe you want to install a [PlantUML extension](https://plugins.jetbrains.com/plugin/7017-plantuml-integration) for the generated PlantUML diagrams.
1615
* LSP4IJ IntelliJ plugin (will be installed automatically when installing our plugin)
1716

1817
<!-- Plugin description end -->

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ intellijPlatform {
4343

4444
pluginConfiguration {
4545
id = "org.contextmapper.intellij-plugin"
46-
name = "ContextMapper"
46+
name = "Context Mapper"
4747
version = "0.3.1"
4848

4949
productDescriptor {
@@ -55,7 +55,7 @@ intellijPlatform {
5555
}
5656

5757
vendor {
58-
name = "ContextMapper"
58+
name = "Context Mapper"
5959
url = "https://contextmapper.org"
6060
}
6161

@@ -100,7 +100,7 @@ tasks {
100100
}
101101

102102
val npmInstall by registering(Exec::class) {
103-
description = "Downloads the ContextMapper Language Server NPM package"
103+
description = "Downloads the Context Mapper Language Server NPM package"
104104
group = LifecycleBasePlugin.BUILD_GROUP
105105
workingDir(layout.projectDirectory.dir("lsp"))
106106
val installCommand = "npm install"
@@ -113,7 +113,7 @@ tasks {
113113
}
114114

115115
val copyLanguageServer by registering(Copy::class) {
116-
description = "Extracts and copies the ContextMapper Language Server to the build directory"
116+
description = "Extracts and copies the Context Mapper Language Server to the build directory"
117117
group = LifecycleBasePlugin.BUILD_GROUP
118118
dependsOn(npmInstall)
119119

src/main/resources/META-INF/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
factoryClass="org.contextmapper.intellij.lsp4ij.server.ContextMapperDslServerFactory">
5252
<description>
5353
<![CDATA[
54-
<p>ContextMapper Language Server</p>
54+
<p>Context Mapper Language Server</p>
5555
<p>
56-
The ContextMapper Language Server provides support for the ContextMapper DSL in IntelliJ IDEA.
56+
The Context Mapper Language Server provides support for the ContextMapper DSL in IntelliJ IDEA.
5757
</p>
5858
]]>
5959
</description>

0 commit comments

Comments
 (0)