beaver-iot-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>beaver-iot-parent</artifactId> <version>1.2.4</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</groupId> <artifactId>beaver-iot-parent</artifactId> <version>1.2.4</version> <packaging>pom</packaging> <name>beaver-iot-parent</name> <description>An open-source platform designed for rapid and intuitive IoT application development.</description> <url>https://github.com/milesight-iot/beaver-iot</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> <scm> <url>https://github.com/milesight-iot/beaver-iot</url> </scm> <properties> <graalvm.version>24.1.2</graalvm.version> <spring-boot.version>3.3.4</spring-boot.version> <aws-sdk.version>2.31.14</aws-sdk.version> <cron-util.version>9.2.0</cron-util.version> <mapstruct.version>1.5.5.Final</mapstruct.version> <poi.version>5.4.1</poi.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <disruptor.version>3.4.4</disruptor.version> <groovy.version>3.0.8</groovy.version> <simple-java-mail.version>8.12.4</simple-java-mail.version> <jsqlparser.version>4.9</jsqlparser.version> <maven.compiler.source>17</maven.compiler.source> <liquibase.version>4.29.2</liquibase.version> <shedlock.version>6.3.0</shedlock.version> <mockito.version>4.11.0</mockito.version> <h2.version>2.3.232</h2.version> <deploy.skip>false</deploy.skip> <spock.version>2.4-M4-groovy-3.0</spock.version> <revision>${beaver-iot.version}</revision> <snapshot-repository-id>central-portal-snapshots</snapshot-repository-id> <maven.compiler.target>17</maven.compiler.target> <junit-jupiter.version>5.10.2</junit-jupiter.version> <junit-platform.version>1.10.2</junit-platform.version> <postgresql.version>42.7.3</postgresql.version> <beaver-iot.version>1.2.4</beaver-iot.version> <redisson.version>3.44.0</redisson.version> <camel.version>4.4.3</camel.version> <lombok-mapstruct.version>0.2.0</lombok-mapstruct.version> <transmittable-thread-local.version>2.14.5</transmittable-thread-local.version> <snapshot-repository-url>https://central.sonatype.com/repository/maven-snapshots/</snapshot-repository-url> <moquette.version>v0.18.0</moquette.version> <minio-client.version>8.5.17</minio-client.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>context</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>eventbus-component</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>rule-engine-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>authentication-service</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>dashboard-service</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>device-service</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>device-template-service</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>entity-service</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>user-service</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.milesight.beaveriot</groupId> <artifactId>integration</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-parent</artifactId> <version>${camel.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.apache.camel.springboot</groupId> <artifactId>camel-spring-boot-dependencies</artifactId> <version>${camel.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.lmax</groupId> <artifactId>disruptor</artifactId> <version>${disruptor.version}</version> </dependency> <dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId> <version>${liquibase.version}</version> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>${h2.version}</version> </dependency> <dependency> <groupId>com.github.jsqlparser</groupId> <artifactId>jsqlparser</artifactId> <version>${jsqlparser.version}</version> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct</artifactId> <version>${mapstruct.version}</version> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${mapstruct.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok-mapstruct-binding</artifactId> <version>${lombok-mapstruct.version}</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>transmittable-thread-local</artifactId> <version>${transmittable-thread-local.version}</version> </dependency> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson-spring-boot-starter</artifactId> <version>${redisson.version}</version> </dependency> <dependency> <groupId>net.javacrumbs.shedlock</groupId> <artifactId>shedlock-spring</artifactId> <version>${shedlock.version}</version> </dependency> <dependency> <groupId>net.javacrumbs.shedlock</groupId> <artifactId>shedlock-provider-redis-spring</artifactId> <version>${shedlock.version}</version> </dependency> <dependency> <groupId>net.javacrumbs.shedlock</groupId> <artifactId>shedlock-provider-inmemory</artifactId> <version>${shedlock.version}</version> </dependency> <dependency> <groupId>org.graalvm.polyglot</groupId> <artifactId>polyglot</artifactId> <version>${graalvm.version}</version> </dependency> <dependency> <groupId>org.graalvm.polyglot</groupId> <artifactId>js-community</artifactId> <version>${graalvm.version}</version> <type>pom</type> </dependency> <dependency> <groupId>org.graalvm.polyglot</groupId> <artifactId>python-community</artifactId> <version>${graalvm.version}</version> <type>pom</type> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test-autoconfigure</artifactId> <version>${spring-boot.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring-boot.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-commons</artifactId> <version>${junit-platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-engine</artifactId> <version>${junit-platform.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <version>${spock.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>groovy</artifactId> </exclusion> <exclusion> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-commons</artifactId> </exclusion> <exclusion> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-engine</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-spring</artifactId> <version>${spock.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>groovy</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> <version>${groovy.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>junit-dep</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.moquette-io.moquette</groupId> <artifactId>moquette-broker</artifactId> <version>${moquette.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> </exclusion> </exclusions> </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> <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> </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>