community-connectors
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.metricshub</groupId> <artifactId>community-connectors</artifactId> <version>1.0.10</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.metricshub</groupId> <artifactId>oss-parent</artifactId> <version>2</version> </parent> <artifactId>community-connectors</artifactId> <version>1.0.10</version> <name>MetricsHub Community Connectors</name> <description>MetricsHub Community Connector Repository</description> <organization> <name>MetricsHub</name> <url>https://metricshub.com</url> </organization> <url>https://metricshub.org/community-connectors</url> <inceptionYear>2023</inceptionYear> <licenses> <license> <name>agpl-3.0</name> <url>https://www.gnu.org/licenses/agpl-3.0.txt</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>GitHub</system> <url>https://github.com/metricshub/community-connectors/issues/</url> </issueManagement> <scm> <connection>scm:git:https://github.com/metricshub/community-connectors.git</connection> <url>https://github.com/metricshub/community-connectors</url> <tag>v1.0.10</tag> </scm> <developers> <developer> <name>Bertrand Martin (@bertysentry)</name> <email>bertrand@metricshub.com</email> <roles> <role>maintainer</role> </roles> </developer> <developer> <name>Nassim Boutekedjiret (@NassimBtk)</name> <email>nassim@metricshub.com</email> <roles> <role>maintainer</role> </roles> </developer> </developers> <properties> <!-- Java 8 --> <maven.compiler.release>8</maven.compiler.release> <!-- Reproducible Build --> <!-- See https://maven.apache.org/guides/mini/guide-reproducible-builds.html --> <project.build.outputTimestamp>2025-04-03T13:26:36Z</project.build.outputTimestamp> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.12.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-launcher</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <!-- Tell the maven-source-plugin where to find the sources --> <sourceDirectory>${basedir}/src/main/connector</sourceDirectory> <plugins> <!-- site --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.12.1</version> <configuration> <generateReports>true</generateReports> <generateProjectInfo>true</generateProjectInfo> <inputEncoding>UTF-8</inputEncoding> <outputEncoding>UTF-8</outputEncoding> </configuration> <dependencies> <dependency> <groupId>org.sentrysoftware.maven</groupId> <artifactId>maven-skin-tools</artifactId> <version>1.3.00</version> </dependency> </dependencies> <executions> <!-- package --> <!-- Create the documentation artifact --> <execution> <phase>prepare-package</phase> <goals> <goal>site</goal> <goal>jar</goal> </goals> <configuration> <attach>true</attach> </configuration> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <!-- pmd --> <plugin> <artifactId>maven-pmd-plugin</artifactId> <configuration> <linkXref>true</linkXref> <sourceEncoding>${project.build.sourceEncoding}</sourceEncoding> <minimumTokens>50</minimumTokens> <targetJdk>${maven.compiler.release}</targetJdk> <rulesets> <ruleset>pmd.xml</ruleset> </rulesets> </configuration> </plugin> <!-- Generate reference through the MetricsHub Connector Maven Plugin --> <plugin> <groupId>org.metricshub.maven</groupId> <artifactId>metricshub-connector-maven-plugin</artifactId> <version>1.0.10</version> <configuration> <defaultPlatformIconFilename>default.png</defaultPlatformIconFilename> </configuration> </plugin> </plugins> </reporting> </project>