fix production profile

This commit is contained in:
f43nd1r 2019-09-17 15:47:29 +02:00
parent 33c58ff82e
commit f313461965
4 changed files with 11 additions and 4 deletions

6
.gitignore vendored
View file

@ -31,12 +31,12 @@ nbdist/
.nb-gradle/
### NPM ###
/node_modules
/target
**/node_modules
package-lock.json
package.json
webpack.config.js
webpack.generated.js
### Maven ###
**/target
**/target
/target

View file

@ -1,5 +1,5 @@
language: java
install: ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pproduction-mode
install: ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pproduction
deploy:
provider: releases
api_key:

View file

@ -352,6 +352,7 @@
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>flow-server-production-mode</artifactId>
<version>2.0.12</version>
</dependency>
</dependencies>
</profile>

View file

@ -42,4 +42,10 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>production</id>
</profile>
</profiles>
</project>