Skip to content

Commit 33a219c

Browse files
ahornaceVladimir Kotal
authored andcommitted
Use provided scope for jetbrains annotations
1 parent 7a9eac9 commit 33a219c

File tree

4 files changed

+23
-1
lines changed

4 files changed

+23
-1
lines changed

opengrok-indexer/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,6 @@ Portions Copyright (c) 2020-2020, Lubos Kosco <[email protected]>.
217217
<dependency>
218218
<groupId>org.jetbrains</groupId>
219219
<artifactId>annotations</artifactId>
220-
<version>20.1.0</version>
221220
</dependency>
222221
<dependency>
223222
<groupId>org.eclipse.jgit</groupId>

opengrok-web/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,10 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
196196
<version>${mockito.version}</version>
197197
<scope>test</scope>
198198
</dependency>
199+
<dependency>
200+
<groupId>org.jetbrains</groupId>
201+
<artifactId>annotations</artifactId>
202+
</dependency>
199203
</dependencies>
200204

201205
<build>

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,12 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
180180
</exclusion>
181181
</exclusions>
182182
</dependency>
183+
<dependency>
184+
<groupId>org.jetbrains</groupId>
185+
<artifactId>annotations</artifactId>
186+
<version>21.0.0</version>
187+
<scope>provided</scope>
188+
</dependency>
183189
</dependencies>
184190
</dependencyManagement>
185191

suggester/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ Portions Copyright (c) 2020, Chris Fraire <[email protected]>.
8686
<scope>test</scope>
8787
</dependency>
8888

89+
<dependency>
90+
<groupId>org.jetbrains</groupId>
91+
<artifactId>annotations</artifactId>
92+
</dependency>
93+
8994
<dependency>
9095
<groupId>net.openhft</groupId>
9196
<artifactId>chronicle-map</artifactId>
@@ -95,6 +100,14 @@ Portions Copyright (c) 2020, Chris Fraire <[email protected]>.
95100
<groupId>com.sun.java</groupId>
96101
<artifactId>tools</artifactId>
97102
</exclusion>
103+
<exclusion>
104+
<groupId>org.jetbrains</groupId>
105+
<artifactId>annotations</artifactId>
106+
</exclusion>
107+
<exclusion>
108+
<groupId>com.intellij</groupId>
109+
<artifactId>annotations</artifactId>
110+
</exclusion>
98111
</exclusions>
99112
</dependency>
100113

0 commit comments

Comments
 (0)