beaver-iot-integrations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.milesight.beaveriot.integrations</groupId> <artifactId>beaver-iot-integrations</artifactId> <version>1.2.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.milesight.beaveriot.integrations</groupId> <artifactId>beaver-iot-integrations</artifactId> <version>1.2.2</version> <packaging>pom</packaging> <name>beaver-iot-integrations</name> <description>Beaver IoT integrations.</description> <url>https://github.com/milesight-iot/beaver-iot-integrations</url> <organization> <name>Milesight</name> <url>https://www.milesight.com</url> </organization> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/license/MIT</url> </license> </licenses> <developers> <developer> <id>Simon</id> <name>Simon Zhao</name> <email>simon.zhao@milesight.com</email> </developer> </developers> <modules> <module>integrations</module> </modules> <scm> <url>https://github.com/milesight-iot/beaver-iot-integrations</url> </scm> <properties> <snapshot-repository-id>central-portal-snapshots</snapshot-repository-id> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.source>17</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <beaver-iot.version>1.2.2</beaver-iot.version> <deploy.skip>false</deploy.skip> <revision>${beaver-iot.version}-SNAPSHOT</revision> <snapshot-repository-url>https://central.sonatype.com/repository/maven-snapshots/</snapshot-repository-url> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>beaver-iot-parent</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.2.7</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten-clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <flattenMode>resolveCiFriendliesOnly</flattenMode> <updatePomFile>true</updatePomFile> </configuration> </plugin> <plugin> <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> <configuration> <skipSource>${deploy.skip}</skipSource> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <legacyMode>true</legacyMode> <doclint>none</doclint> <skip>${deploy.skip}</skip> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <skip>${deploy.skip}</skip> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <waitUntil>published</waitUntil> </configuration> </plugin> </plugins> </build> <properties> <revision>${beaver-iot.version}</revision> </properties> </profile> <profile> <id>snapshot</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <artifactId>maven-deploy-plugin</artifactId> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> <configuration> <skip>${deploy.skip}</skip> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <uniqueVersion>false</uniqueVersion> <id>${snapshot-repository-id}</id> <url>${snapshot-repository-url}</url> </snapshotRepository> </distributionManagement> <properties> <revision>${beaver-iot.version}-SNAPSHOT</revision> </properties> <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> <repository> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> </snapshots> <id>${snapshot-repository-id}</id> <name>Central Portal Snapshots</name> <url>${snapshot-repository-url}</url> </repository> </repositories> </profile> </profiles> </project>