-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathplugin.xml
More file actions
82 lines (67 loc) · 3.8 KB
/
plugin.xml
File metadata and controls
82 lines (67 loc) · 3.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!--
Copyright 2017 the MapStruct authors (http://www.mapstruct.org/)
and/or other contributors as indicated by the @authors tag. See the
copyright.txt file in the distribution for a full listing of all
contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<idea-plugin>
<id>org.mapstruct.intellij</id>
<name>MapStruct Support</name>
<vendor url="http://www.mapstruct.org">MapStruct</vendor>
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
<idea-version since-build="212"/>
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
<depends>com.intellij.modules.java</depends>
<depends optional="true" config-file="org.mapstruct.intellij-withKotlin.xml">org.jetbrains.kotlin</depends>
<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
<completion.contributor language="JAVA" implementationClass="org.mapstruct.intellij.codeinsight.completion.ComponentModelCompletionContributor" />
<psi.referenceContributor language="JAVA" implementation="org.mapstruct.intellij.codeinsight.references.MapstructReferenceContributor" />
<methodReferencesSearch implementation="org.mapstruct.intellij.search.MappingMethodUsagesSearcher" />
<renameHandler implementation="org.mapstruct.intellij.rename.MapstructSourceTargetParameterRenameHandler"/>
<multiHostInjector implementation="org.mapstruct.intellij.expression.JavaExpressionInjector"/>
<lang.jvm.ignoreAnnotationParamSupport implementation="org.mapstruct.intellij.inspection.MapStructDefaultAnnotationParamSupport"/>
<projectConfigurable groupId="language"
id="preferences.language.MapStruct"
bundle="org.mapstruct.intellij.messages.MapStructBundle"
key="plugin.settings.title"
instance="org.mapstruct.intellij.settings.ProjectSettingsPage"/>
<localInspection language="JAVA"
enabledByDefault="true"
level="ERROR"
bundle="org.mapstruct.intellij.messages.MapStructBundle"
key="inspection.missing.annotation"
shortName="MapperOrMapperConfigMissing"
implementationClass="org.mapstruct.intellij.inspection.MissingMapperOrMapperConfigAnnotationInspection"
/>
<localInspection
language="JAVA"
enabledByDefault="true"
level="WARNING"
bundle="org.mapstruct.intellij.messages.MapStructBundle"
key="inspection.unmapped.target.properties"
shortName="UnmappedTargetProperties"
implementationClass="org.mapstruct.intellij.inspection.UnmappedTargetPropertiesInspection"/>
<localInspection
language="JAVA"
enabledByDefault="true"
level="WARNING"
bundle="org.mapstruct.intellij.messages.MapStructBundle"
key="inspection.wrong.usage.mappers.factory"
shortName="WrongUsageOfMappersFactory"
implementationClass="org.mapstruct.intellij.inspection.WrongUsageOfMappersFactoryInspection"/>
</extensions>
<actions>
<!-- Add your actions here -->
</actions>
</idea-plugin>