Skip to content

Commit

Permalink
Preparing for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
essiembre committed Jan 5, 2022
1 parent 6935f0f commit 584e425
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 27 deletions.
21 changes: 11 additions & 10 deletions CHANGES.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,27 @@
</properties>
<body>

<release version="3.0.0-RC1" date="2021-10-10"
description="Release Candidate 1.">
<release version="3.0.0" date="2022-01-04"
description="Major release. NOT a drop-in replacement for 2.x.">

<!-- 3.0.0-RC1 -->

<action dev="essiembre" type="fix">
Fixed invalid configuration in POM "maven-dependency-plugin".
</action>
</release>

<release version="3.0.0-M2" date="2021-07-28"
description="Changes since last milestone for this upcoming major release.">
<!-- 3.0.0-M2 -->

<action dev="essiembre" type="fix" issue="21">
Fixed Solr credentials not being sent when "solrCommitDisabled" is
false.
</action>
<action dev="essiembre" type="update">
Maven dependency updates: Solr 8.8.2.
</action>
</release>

<release version="3.0.0-M1" date="2021-03-01"
description="Milestone towards next major release.">
</action>

<!-- 3.0.0-M1 -->

<action dev="essiembre" type="update">
Major refactor to support Norconex Committer 3.x.
</action>
Expand Down
66 changes: 49 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,20 @@
<parent>
<groupId>com.norconex.commons</groupId>
<artifactId>norconex-commons-maven-parent</artifactId>
<version>1.0.0-RC1</version>
<version>1.0.0</version>
</parent>
<groupId>com.norconex.collectors</groupId>
<artifactId>norconex-committer-solr</artifactId>
<version>3.0.0-RC1</version>
<version>3.0.0</version>
<name>Norconex Committer Solr</name>
<description>
Solr implementation of Norconex Committer. Should also work with any
Solr-based products, such as LucidWorks.
</description>

<properties>
<solr.version>8.8.2</solr.version>
<solr.version>8.11.1</solr.version>
<netty.version>4.1.72.Final</netty.version>
</properties>
<inceptionYear>2009</inceptionYear>

Expand All @@ -43,6 +44,51 @@
</license>
</licenses>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-unix-common</artifactId>
<version>${netty.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>com.norconex.commons</groupId>
Expand Down Expand Up @@ -78,20 +124,6 @@
<version>${solr.version}</version>
<scope>test</scope>
</dependency>
<!--
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-test-framework</artifactId>
<version>${solr.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency>
-->
<dependency>
<groupId>com.norconex.commons</groupId>
<artifactId>norconex-commons-lang</artifactId>
Expand Down

0 comments on commit 584e425

Please sign in to comment.