copilot-project
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.vaadin</groupId> <artifactId>copilot-project</artifactId> <version>24.7.2</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>vaadin-parent</artifactId> <version>2.2.1</version> </parent> <groupId>com.vaadin</groupId> <artifactId>copilot-project</artifactId> <version>24.7.2</version> <packaging>pom</packaging> <name>copilot-project</name> <description>Copilot for Vaadin</description> <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> <java.version>17</java.version> <maven.test.skip>false</maven.test.skip> <maven.compiler.source>17</maven.compiler.source> <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> <spring.boot.version>3.4.4</spring.boot.version> <rootdir>.</rootdir> <skipUnitTests>${maven.test.skip}</skipUnitTests> <skipNpmTests>${maven.test.skip}</skipNpmTests> <hilla.version>24.7.2</hilla.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <flow.version>24.7.4</flow.version> <sonar.exclusions>tests/*/**/*,</sonar.exclusions> <maven.compiler.target>17</maven.compiler.target> <npmrunbuild.skip>false</npmrunbuild.skip> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <testing.vaadin.version>24.7.1</testing.vaadin.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>flow-bom</artifactId> <version>${flow.version}</version> <type>pom</type> <scope>import</scope> </dependency> <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> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>${spring.boot.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> <configuration> <skip>${skipUnitTests}</skip> <systemProperties> <copilot.development>true</copilot.development> </systemProperties> </configuration> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.2</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <parameters>true</parameters> </configuration> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.44.3</version> <configuration> <java> <toggleOffOn /> <eclipse> <version>4.33</version> <file>${maven.multiModuleProjectDirectory}/eclipse-formatter.xml</file> </eclipse> <importOrder> <file>${maven.multiModuleProjectDirectory}/eclipse.importorder</file> </importOrder> </java> <typescript> <includes> <include>frontend/**/*.ts</include> <include>frontend/**/*.tsx</include> <include>frontend/**/*.css</include> <include>src/main/frontend/**/*.ts</include> <include>src/main/frontend/**/*.tsx</include> <include>src/main/frontend/**/*.css</include> </includes> <excludes> <exclude>src/main/frontend/generated/**</exclude> </excludes> <prettier> <prettierVersion>3.5.0</prettierVersion> <configFile>${rootdir}/.prettierrc.json</configFile> </prettier> </typescript> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <id>build frontend</id> <phase>generate-resources</phase> <goals> <goal>exec</goal> </goals> <configuration> <skip>${npmrunbuild.skip}</skip> <arguments> <argument>run</argument> <argument>build</argument> </arguments> </configuration> </execution> </executions> <configuration> <executable>npm</executable> </configuration> </plugin> </plugins> </build> </project>