ferrumx-windows
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.eggy03</groupId> <artifactId>ferrumx-windows</artifactId> <version>2.2.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.eggy03</groupId> <artifactId>ferrumx-windows</artifactId> <version>2.2.0</version> <properties> <maven.compiler.release>8</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.name>FerrumX</project.name> <project.description>A lightweight Hardware and Network Info wrapper in JAVA</project.description> <project.url>https://github.com/Egg-03/FerrumX</project.url> <project.license.name>The MIT License</project.license.name> <project.license.url>https://raw.githubusercontent.com/Egg-03/Ferrumx/refs/heads/main/LICENSE</project.license.url> <project.developer.id>Egg-03</project.developer.id> <project.developer.name>Egg-03 </project.developer.name> <project.developer.email>egg03@duck.com</project.developer.email> <project.scm.url>https://github.com/eggy03/FerrumX.git</project.scm.url> <project.scm.dev>scm:git:ssh://git@github.com:eggy03/FerrumX.git</project.scm.dev> <sonar.organization>egg-03</sonar.organization> <lombok.version>1.18.42</lombok.version> </properties> <dependencies> <dependency> <groupId>com.profesorfalken</groupId> <artifactId>jPowerShell</artifactId> <version>3.1.1</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.13.2</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>26.0.2</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>6.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.20.0</version> <scope>test</scope> </dependency> </dependencies> <!-- Mandatory fields for Sonatype Central --> <name>${project.name}</name> <description>${project.description}</description> <url>${project.url}</url> <licenses> <license> <name>${project.license.name}</name> <url>${project.license.url}</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>${project.developer.id}</id> <name>${project.developer.name}</name> <email>${project.developer.email}</email> </developer> </developers> <scm> <url>${project.scm.url}</url> <developerConnection>${project.scm.dev}</developerConnection> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.1</version> <configuration> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <!-- Attach Sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Attach javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.12.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Sign --> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>sign-maven-plugin</artifactId> <version>1.1.0</version> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Publish to Central --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.9.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <checksums>all</checksums> </configuration> </plugin> <!-- Generate coverage report --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.14</version> <configuration> <excludes> <exclude>io/github/eggy03/ferrumx/windows/entity/**/*</exclude> </excludes> </configuration> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>