123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>de.mcs.tools.sps</groupId>
- <artifactId>spsemulator-gui</artifactId>
- <name>SPSEmulator-GUI</name>
- <version>1.0-SNAPSHOT</version>
- <packaging>war</packaging>
- <properties>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <failOnMissingWebXml>false</failOnMissingWebXml>
- <vaadin.version>12.0.5</vaadin.version>
- <jetty.version>9.4.11.v20180605</jetty.version>
- </properties>
- <repositories>
- <!-- Repository used by many Vaadin add-ons -->
- <repository>
- <id>Vaadin Directory</id>
- <url>http://maven.vaadin.com/vaadin-addons</url>
- </repository>
- <!-- Repository needed for the prerelease versions of Vaadin -->
- <repository>
- <id>vaadin-prereleases</id>
- <url>https://maven.vaadin.com/vaadin-prereleases</url>
- </repository>
- </repositories>
- <pluginRepositories>
- <!-- Repository needed for the prerelease versions of Vaadin -->
- <pluginRepository>
- <id>vaadin-prereleases</id>
- <url>https://maven.vaadin.com/vaadin-prereleases</url>
- </pluginRepository>
- </pluginRepositories>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.vaadin</groupId>
- <artifactId>vaadin-bom</artifactId>
- <type>pom</type>
- <scope>import</scope>
- <version>${vaadin.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.vaadin</groupId>
- <artifactId>vaadin-core</artifactId>
- </dependency>
- <!-- Added to provide logging output as Flow uses -->
- <!-- the unbound SLF4J no-operation (NOP) logger implementation -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>1.9.2</version>
- <type>jar</type>
- </dependency>
- <dependency>
- <groupId>de.mcs.tools.sps</groupId>
- <artifactId>SPSEmulator-client</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-maven-plugin</artifactId>
- <version>${jetty.version}</version>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <!-- Production mode can be activated with either property or profile -->
- <id>production-mode</id>
- <activation>
- <property>
- <name>vaadin.productionMode</name>
- </property>
- </activation>
- <properties>
- <vaadin.productionMode>true</vaadin.productionMode>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.vaadin</groupId>
- <artifactId>flow-server-production-mode</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>com.vaadin</groupId>
- <artifactId>vaadin-maven-plugin</artifactId>
- <version>${vaadin.version}</version>
- <executions>
- <execution>
- <goals>
- <goal>copy-production-files</goal>
- <goal>package-for-production</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>3.1.0</version>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- </project>
|