Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Warning
titleWatchout for Warnings / Errors

Lookout for warnings such as:

[WARNING] 'dependencyManagement.dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.pinot:pinot-hdfs:jar -> duplicate declaration of version ${project.version} @ org.apache.pinot:pinot:1.2.0-SNAPSHOT, /root/pinot-release/pinot/pom.xml, line 1621, column 16

These warnings come when you end up with duplicate entries for an artifact in your pom after making the temporary changes mentioned above. To fix this, remove the duplicate entries until all such warnings are resolved. If you don't fix this, dependencies from these artifacts won't be accounted for in the next steps.


Warning
titleWatchout for Errors

Also, If you get errors due to inability to get some confluent packages, you can add the confluent repository to your ~/.m2/settings.xml file.

    <repositories>
      <repository>
        <releases>
          <enabled>false</enabled>
        </releases>
        <id>apache.snapshots</id>
        <name>Apache Snapshot Repository</name>
        <url>https://repository.apache.org/snapshots</url>
      </repository>
      <repository>
        <snapshots>
          <enabled>false</enabled>
        </snapshots>
        <id>central</id>
        <name>Central Repository</name>
        <url>https://repo.maven.apache.org/maven2</url>
      </repository>
      <repository>
        <snapshots>
          <enabled>false</enabled>
        </snapshots>
        <id>confluent</id>
        <name>Confluent Repository</name>
        <url>https://packages.confluent.io/maven/</url>
      </repository>
    </repositories>

...