| <?xml version="1.0" encoding="UTF-8"?> |
| <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"> |
| <parent> |
| <artifactId>meecrowave-examples</artifactId> |
| <groupId>org.apache.meecrowave</groupId> |
| <version>1.2.8-SNAPSHOT</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <artifactId>samples-servlet-vaadin-vxx</artifactId> |
| <name>Servlet (Vaadin - Latest)</name> |
| <packaging>jar</packaging> |
| |
| <properties> |
| <vaadin.version>14.5.1</vaadin.version> |
| </properties> |
| |
| <pluginRepositories> |
| <pluginRepository> |
| <id>vaadin-prereleases</id> |
| <url>https://maven.vaadin.com/vaadin-prereleases</url> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| <repositories> |
| <!--Releases--> |
| <repository> |
| <id>vaadin-addons</id> |
| <url>https://maven.vaadin.com/vaadin-addons</url> |
| </repository> |
| |
| <!--Pre-Releases--> |
| <repository> |
| <id>vaadin-prereleases</id> |
| <url>https://maven.vaadin.com/vaadin-prereleases</url> |
| </repository> |
| </repositories> |
| |
| |
| <dependencyManagement> |
| <dependencies> |
| <!--Vaadin --> |
| <dependency> |
| <groupId>com.vaadin</groupId> |
| <artifactId>vaadin-bom</artifactId> |
| <version>${vaadin.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| <!-- this package contains the javax APIs for CDI, JAX-RS, JSONP, JSONB and Servlet4 --> |
| <dependency> |
| <groupId>org.apache.meecrowave</groupId> |
| <artifactId>meecrowave-specs-api</artifactId> |
| <version>${meecrowave.version}</version> |
| </dependency> |
| |
| <!--Vaadin --> |
| <dependency> |
| <groupId>com.vaadin</groupId> |
| <artifactId>vaadin-core</artifactId> |
| </dependency> |
| |
| </dependencies> |
| |
| |
| <build> |
| <plugins> |
| <plugin> |
| <!-- |
| For starting meecrowave via Maven. Just run |
| $> mvn clean install meecrowave:run |
| --> |
| <groupId>org.apache.meecrowave</groupId> |
| <artifactId>meecrowave-maven-plugin</artifactId> |
| <version>${meecrowave.version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-war-plugin</artifactId> |
| <version>3.2.2</version> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |