storage-restclient-app-standalone-assembly
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.store</groupId> <artifactId>storage-restclient-app-standalone-assembly</artifactId> <version>3.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> <parent> <groupId>org.eclipse.store</groupId> <artifactId>storage-rest-parent</artifactId> <version>3.0.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>storage-restclient-app-standalone-assembly</artifactId> <name>EclipseStore Storage REST Client App Standalone Assembly</name> <description>Executable Client App with Web User Interface</description> <url>https://projects.eclipse.org/projects/technology.store</url> <properties> <vaadin.version>24.2.6</vaadin.version> <spring.boot.version>3.2.0</spring.boot.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring.boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.eclipse.store</groupId> <artifactId>storage-restclient-app</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.10.0</version> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>spring-boot:run</defaultGoal> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring.boot.version}</version> <configuration> <mainClass> org.eclipse.store.storage.restclient.app.standalone.types.Application</mainClass> <!-- Clean build and startup time for Vaadin apps sometimes may exceed the default Spring Boot's 30sec timeout. --> <wait>500</wait> <maxAttempts>240</maxAttempts> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>production</id> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring.boot.version}</version> <configuration> <finalName>${project.artifactId}-${project.version}</finalName> <mainClass> org.eclipse.store.storage.restclient.app.standalone.types.Application</mainClass> <jvmArguments>-Dvaadin.productionMode</jvmArguments> <classifier>standalone</classifier> <layout>JAR</layout> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>