Skip to content

Commit 1097c9e

Browse files
committed
Merge remote-tracking branch 'upstream/master' into type-providers
2 parents 503258e + 1aafeae commit 1097c9e

21 files changed

+492
-302
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<modelVersion>4.0.0</modelVersion>
2525
<groupId>com.github.package-url</groupId>
2626
<artifactId>packageurl-java</artifactId>
27-
<version>1.6.0-SNAPSHOT</version>
27+
<version>2.0.0-SNAPSHOT</version>
2828
<packaging>jar</packaging>
2929

3030
<name>Package URL</name>
@@ -325,7 +325,7 @@
325325
<!-- Error Prone plugin -->
326326
<arg>-XDcompilePolicy=simple</arg>
327327
<arg>--should-stop=ifError=FLOW</arg>
328-
<arg>-Xplugin:ErrorProne</arg>
328+
<arg>-Xplugin:ErrorProne -XepExcludedPaths:.*/generated-test-sources/.*</arg>
329329
<!--
330330
~ Due to a bug in IntelliJ IDEA, annotation processing MUST be enabled.
331331
~ Failing to do so will cause IDEA to ignore the annotation processor path

src/main/java/com/github/packageurl/MalformedPackageURLException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public MalformedPackageURLException(@Nullable String msg) {
5353
*
5454
* @param message the detail message
5555
* @param cause the cause
56-
* @since 1.6.0
56+
* @since 2.0.0
5757
*/
5858
public MalformedPackageURLException(String message, Throwable cause) {
5959
super(message, cause);
@@ -64,7 +64,7 @@ public MalformedPackageURLException(String message, Throwable cause) {
6464
* message of {@code (cause==null ? null : cause.toString())}.
6565
*
6666
* @param cause the cause
67-
* @since 1.6.0
67+
* @since 2.0.0
6868
*/
6969
public MalformedPackageURLException(Throwable cause) {
7070
super(cause);

0 commit comments

Comments
 (0)