hawkbit-simple-ui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-simple-ui</artifactId> <version>0.4.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2023 Contributors to the Eclipse Foundation This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 --> <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> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.1.5</version> <relativePath></relativePath> </parent> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-simple-ui</artifactId> <version>0.4.1</version> <name>hawkBit :: Runtime :: Simple UI</name> <licenses> <license> <name>EPL-2.0</name> <url>https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt</url> <comments>Eclipse Public License - Version 2.0</comments> </license> </licenses> <distributionManagement> <repository> <id>ossrh</id> <name>hawkBit Repository - Release</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <name>hawkBit Repository - Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <release.scm.developerConnection>scm:git:https://github.com/eclipse/hawkbit.git</release.scm.developerConnection> <sonar.exclusions>**/target/generated-sources/apt/**,**/src/test/**,**/src/main/java/org/eclipse/hawkbit/repository/test/**</sonar.exclusions> <dash.fail>true</dash.fail> <dash.review.summary>${project.build.directory}/dash/review-summary</dash.review.summary> <excludeGroupIds>org.eclipse,org.junit</excludeGroupIds> <sonar.qualitygate.wait>true</sonar.qualitygate.wait> <release.scm.url>https://github.com/eclipse/hawkbit.git</release.scm.url> <release.scm.connection>scm:git:git@github.com:eclipse/hawkbit.git</release.scm.connection> <dash.summary>${project.build.directory}/dash/summary</dash.summary> <sonar.links.homepage>https://www.eclipse.org/hawkbit</sonar.links.homepage> <spring-cloud-starter-openfeign.version>4.0.4</spring-cloud-starter-openfeign.version> <sonar.qualitygate.timeout>600</sonar.qualitygate.timeout> <sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/../hawkbit-test-report/target/jacoco-aggregate/jacoco.xml, ${project.basedir}/../../hawkbit-test-report/target/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> <sonar.coverage.exclusions>**/src/main/java/org/eclipse/hawkbit/ui/**,**/target/generated-sources/apt/**,**/src/main/java/org/eclipse/hawkbit/repository/test/**,**/examples/**</sonar.coverage.exclusions> <dash.projectId>iot.hawkbit</dash.projectId> <java.version>17</java.version> <vaadin.version>24.2.2</vaadin.version> <sonar.organization>bosch-iot-rollouts</sonar.organization> <dash.skip>true</dash.skip> <jacoco.version>0.8.8</jacoco.version> <sonar.links.ci>https://circleci.com/gh/eclipse/hawkbit</sonar.links.ci> <revision>0.4.0-SNAPSHOT</revision> <sonar.projectKey>${project.groupId}:${project.artifactId}</sonar.projectKey> <jacoco.outputDir>${project.build.directory}</jacoco.outputDir> <sonar.branch.name>LOCAL_SCAN</sonar.branch.name> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-bom</artifactId> <version>${vaadin.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-mgmt-api</artifactId> <version>0.4.1</version> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-core</artifactId> <exclusions> <exclusion> <groupId>com.vaadin</groupId> <artifactId>vaadin-dev</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> <version>${spring-cloud-starter-openfeign.version}</version> </dependency> <dependency> <groupId>io.github.openfeign</groupId> <artifactId>feign-hc5</artifactId> <version>13.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> </dependencies> <repositories> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>Vaadin Repo</id> <url>https://maven.vaadin.com/vaadin-addons</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>dash-licenses</id> <url>https://repo.eclipse.org/content/repositories/dash-licenses</url> </pluginRepository> </pluginRepositories> <build> <defaultGoal>spring-boot:run</defaultGoal> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.vaadin</groupId> <artifactId>vaadin-maven-plugin</artifactId> <version>${vaadin.version}</version> <executions> <execution> <phase>compile</phase> <goals> <goal>build-frontend</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.11</version> <configuration> <header>licenses/LICENSE_HEADER_TEMPLATE.txt</header> <excludes> <exclude>**/banner.txt</exclude> <exclude>**/README.md</exclude> <exclude>**/frontend/**</exclude> </excludes> <mapping> <scss>JAVADOC_STYLE</scss> </mapping> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.5.0</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> <groupId>org.eclipse.dash</groupId> <artifactId>license-tool-plugin</artifactId> <version>1.0.2</version> <executions> <execution> <id>license-check</id> <goals> <goal>license-check</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>nexus_staging</id> <activation> <property> <name>!skipNexusStaging</name> </property> </activation> <build> <plugins> <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://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>create_gpg_signature</id> <activation> <property> <name>createGPGSignature</name> </property> </activation> <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> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>