Skip to content

Commit

Permalink
Fixed invalid configuration in POM "maven-dependency-plugin".
Browse files Browse the repository at this point in the history
  • Loading branch information
essiembre committed Aug 4, 2021
1 parent eaa12d7 commit 0c7085b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGES.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
</properties>
<body>

<release version="3.0.0-SNAPSHOT" date="2021-??-??"
description="Changes since last milestone for this upcoming major release.">
<action dev="essiembre" type="fix">
Fixed invalid configuration in POM "maven-dependency-plugin".
</action>
</release>

<release version="3.0.0-M1" date="2021-03-01"
description="Milestone towards next major release.">
<action dev="essiembre" type="update">
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
<parent>
<groupId>com.norconex.commons</groupId>
<artifactId>norconex-commons-maven-parent</artifactId>
<version>1.0.0-M1</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<groupId>com.norconex.collectors</groupId>
<artifactId>norconex-committer-sql</artifactId>
<version>3.0.0-M1</version>
<version>3.0.0-SNAPSHOT</version>
<name>Norconex Committer SQL</name>
<description>SQL database implementation of Norconex Committer.</description>

Expand Down Expand Up @@ -135,7 +135,7 @@
<configuration>
<classifier>resources</classifier>
<outputDirectory>${project.build.directory}/shared-resources</outputDirectory>
<includeArtifacIds>norconex-commons-lang</includeArtifacIds>
<includeArtifactIds>norconex-commons-lang</includeArtifactIds>
<includeGroupIds>com.norconex.commons</includeGroupIds>
<excludeTransitive>true</excludeTransitive>
</configuration>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/norconex/committer/sql/SQLCommitter.java
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@
*
* @author Pascal Essiembre
*/
@SuppressWarnings("javadoc")
public class SQLCommitter extends AbstractBatchCommitter {

private final SQLCommitterConfig config;
Expand Down

0 comments on commit 0c7085b

Please sign in to comment.