Skip to content

Commit

Permalink
Issue #422: Rename SQL source module to localSql
Browse files Browse the repository at this point in the history
* Fix README.md and pom.xml
  • Loading branch information
SafaeAJ committed Oct 10, 2024
1 parent 877e2af commit 3b34715
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This is a multi-module project:
* **metricshub-snmp-extension-common**: Contains common functionalities and utilities used by SNMP-based extensions.
* **metricshub-snmp-extension**: Enables Simple Network Management Protocol (SNMP) for monitoring and managing network devices.
* **metricshub-snmpv3-extension**: Adds support for SNMPv3, which includes enhanced security features like authentication and encryption.
* **metricshub-localSql-source-extension**: Allows execution of SQL queries on already existing sources.
* **metricshub-localsql-source-extension**: Allows execution of SQL queries on already existing sources.
* **metricshub-win-extension-common**: Contains common functionalities and utilities used by Windows-specific extensions.
* **metricshub-wmi-extension**: Provides support for Windows Management Instrumentation (WMI) to gather detailed information about Windows systems.
* **metricshub-winrm-extension**: Enables the use of Windows Remote Management (WinRM) for remote management and monitoring of Windows-based systems.
Expand Down
4 changes: 2 additions & 2 deletions metricshub-linux/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>metricshub-localSql-source-extension</artifactId>
<artifactId>metricshub-localsql-source-extension</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down Expand Up @@ -190,7 +190,7 @@
</artifactItem>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>metricshub-localSql-source-extension</artifactId>
<artifactId>metricshub-localsql-source-extension</artifactId>
<version>${project.version}</version>
</artifactItem>
<artifactItem>
Expand Down
4 changes: 2 additions & 2 deletions metricshub-localSql-source-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<version>0.9.07-SNAPSHOT</version>
</parent>

<artifactId>metricshub-localSql-source-extension</artifactId>
<artifactId>metricshub-localsql-source-extension</artifactId>
<name>MetricsHub SQL Extension</name>
<description>MetricsHub SQL Extension implementation providing a set of functionalities used to process SQL source.</description>
<packaging>jar</packaging>
Expand Down Expand Up @@ -142,7 +142,7 @@
<artifactSet>
<includes>
<include>com.h2database:h2</include>
<include>org.sentrysoftware:metricshub-localSql-source-extension</include>
<include>org.sentrysoftware:metricshub-localsql-source-extension</include>
</includes>
<excludes>
<exclude>org/slf4j/**</exclude>
Expand Down
4 changes: 2 additions & 2 deletions metricshub-windows/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>metricshub-localSql-source-extension</artifactId>
<artifactId>metricshub-localsql-source-extension</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down Expand Up @@ -196,7 +196,7 @@
</artifactItem>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>metricshub-localSql-source-extension</artifactId>
<artifactId>metricshub-localsql-source-extension</artifactId>
<version>${project.version}</version>
</artifactItem>
<artifactItem>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
<module>metricshub-wmi-extension</module>
<module>metricshub-winrm-extension</module>
<module>metricshub-ping-extension</module>
<module>metricshub-localSql-source-extension</module>
<module>metricshub-localsql-source-extension</module>
<module>metricshub-hardware</module>
<module>metricshub-agent</module>
<module>metricshub-doc</module>
Expand Down Expand Up @@ -808,7 +808,7 @@
</executions>
<configuration>
<inputGlobs>
<!-- These are the default patterns, you can omit
<!-- These are the default patterns, you can omit
<inputGlobs> entirely unless you want to override them -->
<inputGlob>src/main/java/**/*.java</inputGlob>
<inputGlob>src/test/java/**/*.java</inputGlob>
Expand Down

0 comments on commit 3b34715

Please sign in to comment.