|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <parent> |
| 5 | + <groupId>com.vaadin</groupId> |
| 6 | + <artifactId>vaadin-aura-theme-flow-parent</artifactId> |
| 7 | + <version>25.0-SNAPSHOT</version> |
| 8 | + </parent> |
| 9 | + <artifactId>vaadin-aura-theme-flow-integration-tests</artifactId> |
| 10 | + <packaging>war</packaging> |
| 11 | + <name>Vaadin Aura Theme Integration Tests</name> |
| 12 | + <description>Vaadin Aura Theme Integration Tests</description> |
| 13 | + <dependencies> |
| 14 | + <dependency> |
| 15 | + <groupId>com.vaadin</groupId> |
| 16 | + <artifactId>flow-client</artifactId> |
| 17 | + <version>${flow.version}</version> |
| 18 | + </dependency> |
| 19 | + <dependency> |
| 20 | + <groupId>com.vaadin</groupId> |
| 21 | + <artifactId>vaadin-aura-theme-flow</artifactId> |
| 22 | + <version>${project.version}</version> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>com.vaadin</groupId> |
| 26 | + <artifactId>vaadin-dev-server</artifactId> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>com.vaadin</groupId> |
| 30 | + <artifactId>vaadin-flow-components-test-util</artifactId> |
| 31 | + <version>${project.version}</version> |
| 32 | + <scope>test</scope> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>com.vaadin</groupId> |
| 36 | + <artifactId>vaadin-testbench-core</artifactId> |
| 37 | + <scope>test</scope> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.slf4j</groupId> |
| 41 | + <artifactId>slf4j-simple</artifactId> |
| 42 | + <version>2.0.17</version> |
| 43 | + </dependency> |
| 44 | + </dependencies> |
| 45 | + <build> |
| 46 | + <plugins> |
| 47 | + <plugin> |
| 48 | + <artifactId>maven-clean-plugin</artifactId> |
| 49 | + <configuration> |
| 50 | + <filesets> |
| 51 | + <fileset> |
| 52 | + <directory>${project.basedir}</directory> |
| 53 | + <includes> |
| 54 | + <include>package*.json</include> |
| 55 | + <include>pnpm*</include> |
| 56 | + <include>vite.generated.ts</include> |
| 57 | + <include>types.d.ts</include> |
| 58 | + <include>tsconfig.json</include> |
| 59 | + <include>frontend/routes.tsx</include> |
| 60 | + <include>frontend/App.tsx</include> |
| 61 | + </includes> |
| 62 | + </fileset> |
| 63 | + <fileset> |
| 64 | + <directory>${project.basedir}/node_modules</directory> |
| 65 | + <directory>${project.basedir}/frontend/generated</directory> |
| 66 | + </fileset> |
| 67 | + </filesets> |
| 68 | + </configuration> |
| 69 | + </plugin> |
| 70 | + <plugin> |
| 71 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 72 | + </plugin> |
| 73 | + <plugin> |
| 74 | + <artifactId>maven-resources-plugin</artifactId> |
| 75 | + </plugin> |
| 76 | + <plugin> |
| 77 | + <groupId>org.sonatype.plugins</groupId> |
| 78 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 79 | + <configuration> |
| 80 | + <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> |
| 81 | + </configuration> |
| 82 | + </plugin> |
| 83 | + <plugin> |
| 84 | + <groupId>org.codehaus.mojo</groupId> |
| 85 | + <artifactId>properties-maven-plugin</artifactId> |
| 86 | + </plugin> |
| 87 | + <plugin> |
| 88 | + <artifactId>maven-install-plugin</artifactId> |
| 89 | + <configuration> |
| 90 | + <skip>true</skip> |
| 91 | + </configuration> |
| 92 | + </plugin> |
| 93 | + </plugins> |
| 94 | + </build> |
| 95 | + <profiles> |
| 96 | + <profile> |
| 97 | + <id>build-frontend</id> |
| 98 | + <activation> |
| 99 | + <property> |
| 100 | + <name>!skipFrontend</name> |
| 101 | + </property> |
| 102 | + </activation> |
| 103 | + <build> |
| 104 | + <plugins> |
| 105 | + <plugin> |
| 106 | + <groupId>com.vaadin</groupId> |
| 107 | + <artifactId>flow-maven-plugin</artifactId> |
| 108 | + <configuration> |
| 109 | + <frontendDirectory>./frontend</frontendDirectory> |
| 110 | + </configuration> |
| 111 | + </plugin> |
| 112 | + </plugins> |
| 113 | + </build> |
| 114 | + </profile> |
| 115 | + <profile> |
| 116 | + <id>run-jetty</id> |
| 117 | + <activation> |
| 118 | + <property> |
| 119 | + <name>!skipJetty</name> |
| 120 | + </property> |
| 121 | + </activation> |
| 122 | + <build> |
| 123 | + <plugins> |
| 124 | + <plugin> |
| 125 | + <groupId>org.eclipse.jetty.ee10</groupId> |
| 126 | + <artifactId>jetty-ee10-maven-plugin</artifactId> |
| 127 | + <configuration> |
| 128 | + <scan>5</scan> |
| 129 | + </configuration> |
| 130 | + </plugin> |
| 131 | + </plugins> |
| 132 | + </build> |
| 133 | + </profile> |
| 134 | + </profiles> |
| 135 | +</project> |
0 commit comments