Skip to content

Commit f2de33d

Browse files
committed
Updated maven plugin to 3.10.0, .gitignore with target, jsr305 dependency, and lsp-client correction.
1 parent 6cc6eae commit f2de33d

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target/

pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<plugin>
1818
<groupId>org.apache.maven.plugins</groupId>
1919
<artifactId>maven-compiler-plugin</artifactId>
20-
<version>3.9.0</version>
20+
<version>3.10.0</version>
2121
<!--version>3.8.1</version-->
2222
<configuration>
2323
<source>1.8</source>
@@ -125,8 +125,6 @@
125125
<groupId>org.netbeans.api</groupId>
126126
<artifactId>org-netbeans-modules-lsp-client</artifactId>
127127
<version>RELEASE126</version>
128-
<type>jar</type>
129-
<scope>provided</scope>
130128
</dependency>
131129
<dependency>
132130
<groupId>org.netbeans.api</groupId>
@@ -302,6 +300,12 @@
302300
<artifactId>xz</artifactId>
303301
<version>1.9</version>
304302
</dependency>
303+
<dependency>
304+
<groupId>com.google.code.findbugs</groupId>
305+
<artifactId>jsr305</artifactId>
306+
<version>3.0.2</version>
307+
<scope>provided</scope>
308+
</dependency>
305309
</dependencies>
306310
<properties>
307311
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)