Skip to content

pom.xml missing dependencies #1520

@kanwhoa

Description

@kanwhoa

Describe the bug

In the current version (2.6.3), the pom.xml file appears to be empty, i.e. missing runtime dependencies. In comparison to 2.6.2 where the runtime dependencies were included. This breaks systems based on Maven. The .module file appears correct.

Expected Behavior

Th pom.xml file should include the appropriate run/compile time dependencies.

What plugins are used? What other connection properties were set?

N/A

Current Behavior

Our build failed to include the relevant runtime dependencies.

Reproduction Steps

Create a project using the following pom.xml using maven. This will compile, however, when creating uber-jars (for example through Spring Boot), the required runtime dependencies are not included.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <artifactId>test</artifactId>
  <groupId>test</groupId>
  <version>1.0.0-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>Example project</name>
  <dependencies>
    <dependency>
      <groupId>software.amazon.jdbc</groupId>
      <artifactId>aws-advanced-jdbc-wrapper</artifactId>
      <version>LATEST</version>
    </dependency>
  </dependencies>
</project>

Possible Solution

No response

Additional Information/Context

No response

The AWS Advanced JDBC Driver version used

2.6.3

JDK version used

openjdk 21.0.7 2025-04-15

Operating System and version

OSX

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions