Skip to content

Commit 902b55e

Browse files
authored
Release 2.5 (#136)
Updated to release version 2.5
1 parent a65aa53 commit 902b55e

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

API/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.crawler-commons</groupId>
77
<artifactId>urlfrontier</artifactId>
8-
<version>2.5-SNAPSHOT</version>
8+
<version>2.5</version>
99
</parent>
1010

1111
<name>urlfrontier-API</name>

client/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Commands:
2121
ListNodes Prints out list of nodes forming the cluster
2222
ListQueues Prints out active queues
2323
ListCrawls Prints out list of crawls
24+
ListURLs Prints out all URLs in the Frontier
2425
GetStats Prints out stats from the Frontier
2526
PutURLs Send URLs from a file into a Frontier
2627
GetURLs Get URLs from a Frontier and display in the standard output
@@ -29,4 +30,5 @@ Commands:
2930
DeleteQueue Delete a queue from the Frontier
3031
DeleteCrawl Delete an entire crawl from the Frontier
3132
SetLogLevel Change the log level of a package in the Frontier service
33+
CountURLs Counts the number of URLs in a Frontier
3234
```

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.crawler-commons</groupId>
77
<artifactId>urlfrontier</artifactId>
8-
<version>2.5-SNAPSHOT</version>
8+
<version>2.5</version>
99
</parent>
1010

1111
<name>urlfrontier-client</name>

client/src/main/java/crawlercommons/urlfrontier/client/Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@Command(
1111
name = "Client",
1212
mixinStandardHelpOptions = true,
13-
version = "2.5-SNAPSHOT",
13+
version = "2.5",
1414
subcommands = {
1515
ListNodes.class,
1616
ListQueues.class,

pom.xml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.github.crawler-commons</groupId>
77
<artifactId>urlfrontier</artifactId>
88
<packaging>pom</packaging>
9-
<version>2.5-SNAPSHOT</version>
9+
<version>2.5</version>
1010
<name>urlfrontier</name>
1111

1212
<url>https://github.com/crawler-commons/url-frontier</url>
@@ -78,10 +78,10 @@
7878
<minimalMavenBuildVersion>3.6.3</minimalMavenBuildVersion>
7979
<version.maven-compiler-plugin>3.13.0</version.maven-compiler-plugin>
8080
<git-code-format-maven-plugin.version>5.3</git-code-format-maven-plugin.version>
81-
<version.maven-gpg-plugin>3.2.6</version.maven-gpg-plugin>
81+
<version.maven-gpg-plugin>3.2.8</version.maven-gpg-plugin>
8282
<version.maven-source-plugin>3.3.1</version.maven-source-plugin>
8383
<version.maven-jar-plugin>3.4.2</version.maven-jar-plugin>
84-
<version.maven-javadoc-plugin>3.10.0</version.maven-javadoc-plugin>
84+
<version.maven-javadoc-plugin>3.12.0</version.maven-javadoc-plugin>
8585
<version.maven-release-plugin>3.1.1</version.maven-release-plugin>
8686
<version.maven-shade-plugin>3.6.1</version.maven-shade-plugin>
8787
<minimalJavaBuildVersion>11</minimalJavaBuildVersion>
@@ -284,14 +284,13 @@
284284
</executions>
285285
</plugin>
286286
<plugin>
287-
<groupId>org.sonatype.plugins</groupId>
288-
<artifactId>nexus-staging-maven-plugin</artifactId>
289-
<version>1.7.0</version>
287+
<groupId>org.sonatype.central</groupId>
288+
<artifactId>central-publishing-maven-plugin</artifactId>
289+
<version>${central-publishing-plugin.version}</version>
290290
<extensions>true</extensions>
291291
<configuration>
292-
<serverId>ossrh</serverId>
293-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
294-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
292+
<publishingServerId>central</publishingServerId>
293+
<deploymentName>Crawler-Commons URLFrontier ${project.version}</deploymentName>
295294
</configuration>
296295
</plugin>
297296
<plugin>

service/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.crawler-commons</groupId>
77
<artifactId>urlfrontier</artifactId>
8-
<version>2.5-SNAPSHOT</version>
8+
<version>2.5</version>
99
</parent>
1010

1111
<name>urlfrontier-service</name>
@@ -19,7 +19,7 @@
1919
<rocksdb.version>9.7.3</rocksdb.version>
2020
<logback.version>1.5.17</logback.version>
2121
<mockito.version>5.13.0</mockito.version>
22-
<commons.io.version>2.16.1</commons.io.version>
22+
<commons.io.version>2.20.0</commons.io.version>
2323
<commons.lang.version>3.19.0</commons.lang.version>
2424
</properties>
2525

service/src/main/java/crawlercommons/urlfrontier/service/ConcurrentInsertionOrderMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public interface ConcurrentInsertionOrderMap<K, V> extends ConcurrentMap<K, V> {
2020
/** Returns the first entry according to insertion order */
2121
Entry<K, V> firstEntry();
2222

23-
/** Remove & returns the first entry according to insertion order */
23+
/** Remove and returns the first entry according to insertion order */
2424
Entry<K, V> pollFirstEntry();
2525

2626
/**

service/src/main/java/crawlercommons/urlfrontier/service/URLFrontierServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import picocli.CommandLine.Option;
2626
import picocli.CommandLine.Parameters;
2727

28-
@Command(name = "URL Frontier Server", mixinStandardHelpOptions = true, version = "2.4")
28+
@Command(name = "URL Frontier Server", mixinStandardHelpOptions = true, version = "2.5")
2929
public class URLFrontierServer implements Callable<Integer> {
3030

3131
private static final org.slf4j.Logger LOG = LoggerFactory.getLogger(URLFrontierServer.class);

service/src/main/java/crawlercommons/urlfrontier/service/rocksdb/RocksDBService.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
import java.util.NoSuchElementException;
3333
import java.util.Set;
3434
import java.util.concurrent.ConcurrentHashMap;
35-
3635
import org.apache.commons.lang3.StringUtils;
3736
import org.rocksdb.BlockBasedTableConfig;
3837
import org.rocksdb.BloomFilter;

tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.crawler-commons</groupId>
77
<artifactId>urlfrontier</artifactId>
8-
<version>2.5-SNAPSHOT</version>
8+
<version>2.5</version>
99
</parent>
1010

1111
<name>urlfrontier-test-suite</name>

0 commit comments

Comments
 (0)