fix production profile
This commit is contained in:
parent
33c58ff82e
commit
f313461965
4 changed files with 11 additions and 4 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -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
|
|
@ -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:
|
||||
|
|
|
@ -352,6 +352,7 @@
|
|||
<dependency>
|
||||
<groupId>com.vaadin</groupId>
|
||||
<artifactId>flow-server-production-mode</artifactId>
|
||||
<version>2.0.12</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
||||
|
|
6
pom.xml
6
pom.xml
|
@ -42,4 +42,10 @@
|
|||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>production</id>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
|
Loading…
Reference in a new issue