flow-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.vaadin</groupId> <artifactId>flow-client</artifactId> <version>24.7.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> <parent> <groupId>com.vaadin</groupId> <artifactId>flow-project</artifactId> <version>24.7.4</version> </parent> <groupId>com.vaadin</groupId> <artifactId>flow-client</artifactId> <version>24.7.4</version> <name>Flow Client</name> <description>${project.name}</description> <licenses> <license> <name>Apache License Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <properties> <gwt.module.output>${project.build.outputDirectory}/META-INF/resources/VAADIN/static/</gwt.module.output> <maven.compiler.release>8</maven.compiler.release> <gwt.module.style>OBF</gwt.module.style> <maven.compiler.target>1.8</maven.compiler.target> <org.eclipse.equinox.common.version>3.19.100</org.eclipse.equinox.common.version> <gwt.sdm.bindAddress>0.0.0.0</gwt.sdm.bindAddress> <org.eclipse.core.runtime.version>3.31.100</org.eclipse.core.runtime.version> <maven.compiler.source>1.8</maven.compiler.source> <testListener></testListener> <gwt.module>com.vaadin.ClientEngine</gwt.module> <skipTsTests>${skipTests}</skipTsTests> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt</artifactId> <version>${gwt.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.eclipse.platform</groupId> <artifactId>org.eclipse.equinox.common</artifactId> <version>${org.eclipse.equinox.common.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.platform</groupId> <artifactId>org.eclipse.core.runtime</artifactId> <version>${org.eclipse.core.runtime.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>flow-server</artifactId> <version>24.7.4</version> <classifier>sources</classifier> <scope>provided</scope> <exclusions> <exclusion> <groupId>com.vaadin.servletdetector</groupId> <artifactId>throw-if-servlet3</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>flow-server</artifactId> <version>24.7.4</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>com.vaadin.servletdetector</groupId> <artifactId>throw-if-servlet3</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.14</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.18.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-user</artifactId> <version>2.9.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-dev</artifactId> <version>2.9.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-elemental</artifactId> <version>2.9.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>9.7.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.core</artifactId> <version>7.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.cmpn</artifactId> <version>7.0.0</version> <scope>provided</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>version.txt</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <includes> <include>com/vaadin/flow/client/osgi/*</include> <include>META-INF/**</include> <include>OSGI-INF/**</include> </includes> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <index>false</index> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <excludes> <exclude>**/Gwt*.java</exclude> </excludes> <enableAssertions>true</enableAssertions> </configuration> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <version>${gwt.version}</version> <executions> <execution> <phase>compile</phase> <goals> <goal>compile</goal> <goal>generateAsync</goal> </goals> </execution> <execution> <id>gwt-test</id> <phase>test</phase> <goals> <goal>test</goal> </goals> </execution> </executions> <configuration> <enableAssertions>true</enableAssertions> <failOnError>true</failOnError> <gwtSdkFirstInClasspath></gwtSdkFirstInClasspath> <persistentunitcache>false</persistentunitcache> <webappDirectory>${gwt.module.output}</webappDirectory> <launcherDir>${gwt.module.output}</launcherDir> <compileReport>true</compileReport> <bindAddress>${gwt.sdm.bindAddress}</bindAddress> <modules> <module>${gwt.module}</module> </modules> <webMode>true</webMode> <style>${gwt.module.style}</style> <htmlunit>FF38</htmlunit> <testTimeOut>300</testTimeOut> <extraJvmArgs>-Xmx512m -Dvaadin.frontend.hotdeploy=false</extraJvmArgs> <includes>${gwt.test.pattern}</includes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-gwt-test-sources-as-test-sources</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src/test-gwt/java</source> </sources> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-testbench-core</artifactId> <version>${testbench.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>npm-install</id> <phase>validate</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>npm</executable> <arguments> <argument>install</argument> </arguments> </configuration> </execution> <execution> <id>install-esbuild</id> <phase>validate</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>node</executable> <arguments> <argument>node_modules/esbuild/install.js</argument> </arguments> </configuration> </execution> <execution> <id>typescript-compile</id> <phase>compile</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>npm</executable> <arguments> <argument>run</argument> <argument>compile</argument> </arguments> </configuration> </execution> <execution> <id>run-tests</id> <phase>test</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>npm</executable> <arguments> <argument>test</argument> </arguments> <skip>${skipTsTests}</skip> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>