hilla-react
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.hilla</groupId>
<artifactId>hilla-react</artifactId>
<version>2.5.8</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>
<parent>
<groupId>dev.hilla</groupId>
<artifactId>hilla-project</artifactId>
<version>2.5.8</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<groupId>dev.hilla</groupId>
<artifactId>hilla-react</artifactId>
<version>2.5.8</version>
<name>Hilla Platform for React</name>
<description>Hilla Platform for React-based Applications</description>
<url>https://hilla.dev</url>
<licenses>
<license>
<name>Apache License Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<formatter.basedir>${project.parent.basedir}</formatter.basedir>
</properties>
<dependencies>
<dependency>
<groupId>dev.hilla</groupId>
<artifactId>endpoint</artifactId>
<version>2.5.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>dev.hilla</groupId>
<artifactId>engine-runtime</artifactId>
<version>2.5.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>dev.hilla</groupId>
<artifactId>hilla-dev</artifactId>
<version>2.5.8</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.reformanda.semper</groupId>
<artifactId>dependencyversion-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>set-all</id>
<goals>
<goal>set-version</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>regex-property</id>
<goals>
<goal>regex-property</goal>
</goals>
<configuration>
<name>shrink.version</name>
<value>${project.version}</value>
<regex>\.([A-z]\w+)$</regex>
<replacement>-$1</replacement>
<failIfNoMatch>false</failIfNoMatch>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.coderplus.maven.plugins</groupId>
<artifactId>copy-rename-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>copy-and-rename-file</id>
<phase>process-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<sourceFile>${basedir}/hilla-react-versions.json</sourceFile>
<destinationFile>${basedir}/target/classes/vaadin-core-versions.json</destinationFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnError>false</failOnError>
<quiet>true</quiet>
</configuration>
</plugin>
</plugins>
</build>
</project>