Skip to content

Commit

Permalink
build is clean
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jan 16, 2024
1 parent 415ad7b commit ae2a6fb
Show file tree
Hide file tree
Showing 136 changed files with 161 additions and 138 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -34,7 +34,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<parent>
<groupId>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.59.0</version>
<version>0.67.0</version>
</parent>
<groupId>com.qulice</groupId>
<artifactId>qulice</artifactId>
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 2 additions & 1 deletion qulice-ant/src/it/violations/verify.groovy
@@ -1,6 +1,7 @@
/**
*
* Copyright (c) 2011, Qulice.com
* Copyright (c) 2011-2024, Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 2 additions & 1 deletion qulice-ant/src/main/java/com/qulice/ant/AntPath.java
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2011-2023 Qulice.com
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 2 additions & 1 deletion qulice-ant/src/main/java/com/qulice/ant/AntProject.java
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2011-2023 Qulice.com
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion qulice-ant/src/main/java/com/qulice/ant/QuliceTask.java
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion qulice-ant/src/main/java/com/qulice/ant/package-info.java
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion qulice-ant/src/test/java/com/qulice/ant/package-info.java
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -44,6 +44,8 @@
import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.Collection;
import java.util.LinkedList;
Expand Down Expand Up @@ -239,9 +241,11 @@ private URL toUrl(final String name) {
final URL url;
if (name.startsWith("file:")) {
try {
url = new URL(name);
url = new URI(name).toURL();
} catch (final MalformedURLException ex) {
throw new IllegalStateException("Invalid URL", ex);
} catch (final URISyntaxException ex) {
throw new IllegalStateException("Invalid URI", ex);
}
} else {
url = this.env.classloader().getResource(name);
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2011-2024 Qulice.com
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down

0 comments on commit ae2a6fb

Please sign in to comment.