amazon-archives / sql-jdbc

🔍 Open Distro for Elasticsearch JDBC Driver
Apache License 2.0
111 stars 49 forks source link

Correct name and description in published pom #8

Closed dai-chen closed 5 years ago

dai-chen commented 5 years ago

Issue #, if available:

Description of changes: Corrected name and description in published pom. All unit tests passed and checked the pom file published to my local Maven repo as below:

➜  0.9.0.0-SNAPSHOT pwd
/Users/daichen/.m2/repository/com/amazon/opendistroforelasticsearch/client/opendistro-sql-jdbc/0.9.0.0-SNAPSHOT

➜  0.9.0.0-SNAPSHOT cat opendistro-sql-jdbc-0.9.0.0-SNAPSHOT.pom
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.amazon.opendistroforelasticsearch.client</groupId>
  <artifactId>opendistro-sql-jdbc</artifactId>
  <version>0.9.0.0-SNAPSHOT</version>
  <name>Open Distro For Elasticsearch SQL JDBC Driver</name>
  <description>Open Distro For Elasticsearch SQL JDBC driver</description>
  <url>https://github.com/opendistro-for-elasticsearch/sql-jdbc</url>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>amazonwebservices</id>
      <organization>Amazon Web Services</organization>
      <organizationUrl>https://aws.amazon.com</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:git@github.com:opendistro-for-elasticsearch/sql-jdbc.git</connection>
    <developerConnection>scm:git@github.com:opendistro-for-elasticsearch/sql-jdbc.git</developerConnection>
    <url>git@github.com:opendistro-for-elasticsearch/sql-jdbc.git</url>
  </scm>
  <dependencies/>
</project>

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.