ferrumx-windows
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.eggy03</groupId>
<artifactId>ferrumx-windows</artifactId>
<version>4.1.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>4.1.0</version>
<properties>
<maven.compiler.release>8</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.name>ferrumx-windows</project.name>
<project.description>A lightweight Hardware and Network Info wrapper in JAVA</project.description>
<project.url>https://github.com/eggy03/ferrumx-windows</project.url>
<project.license.name>The MIT License</project.license.name>
<project.license.url>https://raw.githubusercontent.com/eggy03/ferrumx-windows/refs/heads/main/LICENSE</project.license.url>
<project.developer.id>Egg-03</project.developer.id>
<project.developer.name>Sayan Bhattacharjee</project.developer.name>
<project.developer.email>egg03@duck.com</project.developer.email>
<project.scm.url>https://github.com/eggy03/ferrumx-windows.git</project.scm.url>
<project.scm.dev>scm:git:ssh://git@github.com:eggy03/ferrumx-windows.git</project.scm.dev>
<sonar.organization>eggy03</sonar.organization>
<!-- dependencies version -->
<lombok.version>1.18.44</lombok.version>
<jpowershell.version>3.1.1</jpowershell.version>
<commons.exec.version>1.6.0</commons.exec.version>
<google.gson.version>2.13.2</google.gson.version>
<jetbrains.annotations.version>26.1.0</jetbrains.annotations.version>
<junit.jupiter.version>6.0.3</junit.jupiter.version>
<mockito.core.version>5.23.0</mockito.core.version>
<assertj.core.version>3.27.7</assertj.core.version>
<!-- plugins version -->
<lombok.maven.plugin.version>1.18.20.0</lombok.maven.plugin.version>
<maven.compiler.plugin.version>3.15.0</maven.compiler.plugin.version>
<maven.antrun.plugin.version>3.2.0</maven.antrun.plugin.version>
<build.helper.maven.plugin.version>3.6.1</build.helper.maven.plugin.version>
<maven.javadoc.plugin.version>3.12.0</maven.javadoc.plugin.version>
<sign.maven.plugin.version>1.1.0</sign.maven.plugin.version>
<central.publishing.maven.plugin.version>0.10.0</central.publishing.maven.plugin.version>
<jacoco.maven.plugin.version>0.8.14</jacoco.maven.plugin.version>
<slf4j.api.version>2.0.17</slf4j.api.version>
</properties>
<dependencies>
<dependency>
<groupId>com.profesorfalken</groupId>
<artifactId>jPowerShell</artifactId>
<version>${jpowershell.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<version>${commons.exec.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${google.gson.version}</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>${jetbrains.annotations.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.api.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.core.version}</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>
<!-- compile settings -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<!-- delombok -->
<plugin>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<version>${lombok.maven.plugin.version}</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>delombok</goal>
</goals>
</execution>
</executions>
<configuration>
<addOutputDirectory>false</addOutputDirectory>
<outputDirectory>${project.build.directory}/delombok</outputDirectory>
<sourceDirectory>src/main/java</sourceDirectory>
</configuration>
<dependencies> <!-- see https://github.com/awhitford/lombok.maven/issues/181 -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
</dependencies>
</plugin>
<!-- Generate De-lomboked Sources -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>${maven.antrun.plugin.version}</version>
<executions>
<execution>
<id>generate-delomboked-sources-jar</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<jar destfile="${project.build.directory}/${project.build.finalName}-sources.jar"
basedir="${project.build.directory}/delombok"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
<!-- Attach De-lomboked Sources -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build.helper.maven.plugin.version}</version>
<executions>
<execution>
<id>attach-delomboked-sources-jar</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.build.finalName}-sources.jar</file>
<type>jar</type>
<classifier>sources</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<!-- Attach javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<configuration>
<show>private</show>
</configuration>
<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>${sign.maven.plugin.version}</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>${central.publishing.maven.plugin.version}</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>${jacoco.maven.plugin.version}</version>
<configuration>
<excludes>
<exclude>io/github/eggy03/ferrumx/windows/entity/**/*</exclude>
<exclude>io/github/eggy03/ferrumx/windows/annotation/**/*</exclude>
<exclude>io/github/eggy03/ferrumx/windows/exception/**/*</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>