Skip to content

Commit

Permalink
Updated pom.xml, connector name, and logo
Browse files Browse the repository at this point in the history
  • Loading branch information
tannguyen16 committed Jul 24, 2022
1 parent cf9ec68 commit 19e0d73
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 16 deletions.
8 changes: 1 addition & 7 deletions icon/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.mule.connectors</groupId>
<artifactId>mule-db-connector</artifactId>
<groupId>com.teradata.mulesoft</groupId>
<artifactId>teradata-connector</artifactId>
<packaging>mule-extension</packaging>
<version>1.14.0-SNAPSHOT</version>

<name>Database Connector</name>
<description>A Mule extension that provides functionality for connecting to Databases through the JDBC standard</description>
<version>0.0.1</version>
<name>Teradata Connector</name>
<description>An extension that provides functionality for connecting any Mule project to Teradata JDBC Databases</description>

<properties>
<c3p0Version>0.9.5.5</c3p0Version>
Expand Down
2 changes: 1 addition & 1 deletion src/it/tita/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<artifactId>mule-db-connector-it</artifactId>
<version>2.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>DB Connector - Integration Tests</name>
<name>Teradata Connector - Integration Tests</name>

<properties>
<tita.version>4.5.0</tita.version>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/mule/extension/db/internal/DbConnector.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
*
* @since 1.0
*/
@Extension(name = "Database")
@Extension(name = "Teradata")
@Operations({DbBulkOperations.class, DbDdlOperations.class, DbDmlOperations.class})
@Sources(RowListener.class)
@ConnectionProviders({DbDataSourceReferenceConnectionProvider.class, DbGenericConnectionProvider.class,
DerbyConnectionProvider.class, MySqlConnectionProvider.class, OracleDbConnectionProvider.class,
SqlServerConnectionProvider.class})
@Xml(prefix = "db")
@Xml(prefix = "teradata")
@ErrorTypes(DbError.class)
@ExpressionFunctions(DbFunctions.class)
@OnException(DbExceptionHandler.class)
Expand Down

0 comments on commit 19e0d73

Please sign in to comment.