java-broadlink
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.sushantku1099</groupId>
<artifactId>java-broadlink</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- ================================================================ -->
<!-- Maven Central Coordinates -->
<!-- ================================================================ -->
<groupId>io.github.sushantku1099</groupId>
<artifactId>java-broadlink</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>java-broadlink</name>
<description>
Production-grade Java SDK for Broadlink IoT devices.
Controls 124 device types including IR/RF remotes, smart plugs, sensors,
bulbs, thermostats, curtains, alarm systems, and hubs. Works on Android,
Spring Boot, Desktop Java, and Kotlin. Zero-dependency core module.
</description>
<url>https://github.com/Sushantku1099/java-broadlink</url>
<!-- ================================================================ -->
<!-- Project Metadata -->
<!-- ================================================================ -->
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>Sushantku1099</id>
<name>Sushant Sagar</name>
<email>sushant1892004@gmail.com</email>
<url>https://github.com/Sushantku1099</url>
<organization>Pashupatastra Solutions</organization>
<organizationUrl>https://github.com/Sushantku1099</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/Sushantku1099/java-broadlink.git</connection>
<developerConnection>scm:git:ssh://github.com:Sushantku1099/java-broadlink.git</developerConnection>
<url>https://github.com/Sushantku1099/java-broadlink</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/Sushantku1099/java-broadlink/issues</url>
</issueManagement>
<!-- ================================================================ -->
<!-- Build Properties -->
<!-- ================================================================ -->
<properties>
<java.version>11</java.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Dependency versions -->
<jackson.version>2.17.2</jackson.version>
<slf4j.version>2.0.13</slf4j.version>
<junit.version>5.10.3</junit.version>
<mockito.version>5.12.0</mockito.version>
</properties>
<!-- ================================================================ -->
<!-- Dependencies -->
<!-- ================================================================ -->
<dependencies>
<!-- Jackson — optional. Core works without it via ManualJsonSerializer -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
<optional>true</optional>
</dependency>
<!-- SLF4J — optional. Core works without it via no-op logger -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<optional>true</optional>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.10.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- ================================================================ -->
<!-- Build Plugins -->
<!-- ================================================================ -->
<build>
<plugins>
<!-- Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>11</source>
<target>11</target>
<release>11</release>
</configuration>
</plugin>
<!-- Tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<!-- Javadoc JAR (required by Maven Central) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<quiet>true</quiet>
<doclint>none</doclint>
</configuration>
</plugin>
<!-- Sources JAR (required by Maven Central) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG Signing (required by Maven Central) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Central Publishing -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</project>