flow-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.vaadin</groupId> <artifactId>flow-maven-plugin</artifactId> <version>24.8.0</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>com.vaadin</groupId> <artifactId>flow-plugins</artifactId> <version>24.8.0</version> </parent> <groupId>com.vaadin</groupId> <artifactId>flow-maven-plugin</artifactId> <version>24.8.0</version> <packaging>maven-plugin</packaging> <name>Flow Maven plugin</name> <licenses> <license> <name>Apache License Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>flow-plugin-base</artifactId> <version>24.8.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.9.9</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.9.9</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-invoker</artifactId> <version>3.3.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-shared-utils</artifactId> <version>3.4.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.15.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-build-api</artifactId> <version>1.2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>flow-polymer2lit</artifactId> <version>24.8.0</version> <scope>compile</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.15.1</version> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> </executions> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> <goalPrefix>flow</goalPrefix> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>3.9.0</version> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <skipInstallation>${skipTests}</skipInstallation> <skipInvocation>${skipTests}</skipInvocation> <localRepositoryPath>target/local-repo</localRepositoryPath> <extraArtifacts> <artifact>com.vaadin:flow-client:${project.version}</artifact> <artifact>com.vaadin:flow-react:${project.version}</artifact> </extraArtifacts> <streamLogsOnFailures>true</streamLogsOnFailures> <settingsFile>src/it/settings.xml</settingsFile> <postBuildHookScript>verify</postBuildHookScript> <addTestClassPath>true</addTestClassPath> </configuration> </plugin> </plugins> </build> </project>