Greg created ATLAS-4498:
---------------------------
Summary: Incorrect atlas-buildtools version in pom.xml results in
failed build
Key: ATLAS-4498
URL: https://issues.apache.org/jira/browse/ATLAS-4498
Project: Atlas
Issue Type: Bug
Components: atlas-core
Affects Versions: 2.2.0
Environment: Redhat UBI (Universal Base Image) 8.5
Reporter: Greg
Attachments: buildtools.patch
The apache-buildtools version specified in /pom.xml is incorrect and results in
Atlas failing to build. The project.version results in a 2.2.0 version and the
plugin version is 1.0 – both of which do not appear to exist:
[https://repo1.maven.org/maven2/org/apache/atlas/atlas-buildtools/]
Patching ${project.version} and 1.0 to 0.8.1 (only version available from link
above) allows Atlas to build successfully.
in /pom.xml
{code:java}
<dependency>
<groupId>org.apache.atlas</groupId>
<artifactId>atlas-buildtools</artifactId>
<version>${project.version}</version>
</dependency> {code}
and
{code:java}
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.atlas</groupId>
<artifactId>atlas-buildtools</artifactId>
<version>1.0</version>
</dependency>
</dependencies> {code}
A patch is attached to remedy this issue.
--
This message was sent by Atlassian Jira
(v8.20.1#820001)