|
12 | 12 | <parent> |
13 | 13 | <groupId>org.opencds.cqf.cql.ls</groupId> |
14 | 14 | <artifactId>cql-ls</artifactId> |
15 | | - <version>4.5.0-SNAPSHOT</version> |
| 15 | + <version>4.5.0</version> |
16 | 16 | <relativePath>../../pom.xml</relativePath> |
17 | 17 | </parent> |
18 | 18 |
|
|
88 | 88 | <artifactId>eventbus-java</artifactId> |
89 | 89 | </dependency> |
90 | 90 |
|
91 | | - <dependency> |
92 | | - <groupId>info.picocli</groupId> |
93 | | - <artifactId>picocli</artifactId> |
94 | | - </dependency> |
95 | | - |
96 | 91 | <!-- Generated annotation --> |
97 | 92 | <dependency> |
98 | 93 | <groupId>jakarta.annotation</groupId> |
|
153 | 148 | </execution> |
154 | 149 | </executions> |
155 | 150 | </plugin> |
| 151 | + <!-- All source is Kotlin; checkstyle is a Java linter and has no work to do here. --> |
| 152 | + <plugin> |
| 153 | + <groupId>org.apache.maven.plugins</groupId> |
| 154 | + <artifactId>maven-checkstyle-plugin</artifactId> |
| 155 | + <configuration> |
| 156 | + <skip>true</skip> |
| 157 | + </configuration> |
| 158 | + </plugin> |
156 | 159 | </plugins> |
157 | 160 | <pluginManagement> |
158 | 161 | <plugins> |
159 | | - <plugin> |
160 | | - <groupId>org.jetbrains.kotlin</groupId> |
161 | | - <artifactId>kotlin-maven-plugin</artifactId> |
162 | | - <executions> |
163 | | - <execution> |
164 | | - <id>kapt</id> |
165 | | - <goals><goal>kapt</goal></goals> |
166 | | - <configuration> |
167 | | - <sourceDirs> |
168 | | - <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> |
169 | | - </sourceDirs> |
170 | | - <annotationProcessorPaths> |
171 | | - <annotationProcessorPath> |
172 | | - <groupId>info.picocli</groupId> |
173 | | - <artifactId>picocli-codegen</artifactId> |
174 | | - <version>${picocli.version}</version> |
175 | | - </annotationProcessorPath> |
176 | | - </annotationProcessorPaths> |
177 | | - </configuration> |
178 | | - </execution> |
179 | | - </executions> |
180 | | - </plugin> |
181 | 162 | <plugin> |
182 | 163 | <groupId>org.apache.maven.plugins</groupId> |
183 | 164 | <artifactId>maven-compiler-plugin</artifactId> |
|
192 | 173 | <arg>-Werror</arg> |
193 | 174 | <arg>-implicit:none</arg> |
194 | 175 | </compilerArgs> |
195 | | - <annotationProcessorPaths> |
196 | | - <path> |
197 | | - <groupId>info.picocli</groupId> |
198 | | - <artifactId>picocli-codegen</artifactId> |
199 | | - <version>${picocli.version}</version> |
200 | | - </path> |
201 | | - </annotationProcessorPaths> |
202 | 176 | </configuration> |
203 | 177 | </plugin> |
204 | 178 | </plugins> |
|
0 commit comments