daasiot-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>it.sebyone</groupId>
<artifactId>daasiot-java</artifactId>
<version>0.0.2</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Parent module -->
<parent>
<groupId>it.sebyone</groupId>
<artifactId>daasiot-module</artifactId>
<version>0.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<!-- Maven coordinates -->
<groupId>it.sebyone</groupId>
<artifactId>daasiot-java</artifactId>
<version>0.0.2</version>
<name>DaasIoT JNI API</name>
<description>Java JNI bridge for Daas IoT native library</description>
<packaging>jar</packaging>
<url>https://github.com/sebyone/daasiot-java</url>
<!-- License (REQUIRED) -->
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Developer info (REQUIRED) -->
<developers>
<developer>
<id>sebyone</id>
<name>SebyOne</name>
<email>support@sebyone.it</email>
<organization>DaasIoT Project</organization>
<organizationUrl>https://www.daasiot.sebyone.it</organizationUrl>
</developer>
</developers>
<!-- SCM info (REQUIRED) -->
<scm>
<url>https://github.com/sebyone/daasiot-java</url>
<connection>scm:git:git://github.com/sebyone/daasiot-java.git</connection>
<developerConnection>scm:git:ssh://github.com/sebyone/daasiot-java.git</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<cmake.build.dir>${project.basedir}/native/build</cmake.build.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<parent.optional>true</parent.optional>
<gpg.keyname>5ADEAFEF138CDE23EA3A3C058B5E0AC013751039</gpg.keyname>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.12</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<!-- Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
<!-- CMAKE -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<!-- Copia librerie native -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>copy-native-libs</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}/natives</outputDirectory>
<resources>
<resource>
<directory>${project.basedir}/native/build_output/natives</directory>
<includes>
<include>**/*</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<!-- JAR plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<!-- Sources jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG signing -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<configuration>
<!-- Windows-specific configurations -->
<gpgExecutable>gpg</gpgExecutable>
<useAgent>true</useAgent>
<keyname>5ADEAFEF138CDE23EA3A3C058B5E0AC013751039</keyname>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Nexus Staging per Maven Central -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://ossrh-staging-api.central.sonatype.com/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<!-- Maven Central -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://ossrh-staging-api.central.sonatype.com/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://ossrh-staging-api.central.sonatype.com/</url>
</repository>
</distributionManagement>
</project>