|
158 | 158 | <scope>test</scope>
|
159 | 159 | </dependency>
|
160 | 160 | <dependency>
|
161 |
| - <groupId>log4j</groupId> |
162 |
| - <artifactId>log4j</artifactId> |
163 |
| - <version>1.2.17</version> |
| 161 | + <groupId>org.apache.logging.log4j</groupId> |
| 162 | + <artifactId>log4j-core</artifactId> |
| 163 | + <version>2.13.1</version> |
164 | 164 | <scope>test</scope>
|
165 | 165 | </dependency>
|
166 | 166 | <dependency>
|
|
343 | 343 | </goals>
|
344 | 344 | </execution>
|
345 | 345 | </executions>
|
| 346 | + <configuration> |
| 347 | + <optimizeBundle>false</optimizeBundle> |
| 348 | + </configuration> |
346 | 349 | </plugin>
|
347 | 350 | </plugins>
|
348 | 351 | </build>
|
|
461 | 464 | </build>
|
462 | 465 | </profile>
|
463 | 466 |
|
464 |
| - <!-- Heroku profile --> |
| 467 | + <!-- build war --> |
465 | 468 | <profile>
|
466 |
| - <id>heroku</id> |
| 469 | + <id>war</id> |
467 | 470 | <build>
|
468 | 471 | <finalName>leaflet4vaadin-demo</finalName>
|
469 | 472 | <plugins>
|
470 |
| - <plugin> |
471 |
| - <groupId>com.github.eirslett</groupId> |
472 |
| - <artifactId>frontend-maven-plugin</artifactId> |
473 |
| - <version>1.9.1</version> |
474 |
| - <executions> |
475 |
| - <execution> |
476 |
| - <id>install node and npm</id> |
477 |
| - <goals> |
478 |
| - <goal>install-node-and-npm</goal> |
479 |
| - </goals> |
480 |
| - </execution> |
481 |
| - </executions> |
482 |
| - <configuration> |
483 |
| - <nodeVersion>v12.16.1</nodeVersion> |
484 |
| - </configuration> |
485 |
| - </plugin> |
486 | 473 | <plugin>
|
487 | 474 | <groupId>org.apache.maven.plugins</groupId>
|
488 | 475 | <artifactId>maven-dependency-plugin</artifactId>
|
489 | 476 | <executions>
|
490 |
| - <execution> |
491 |
| - <id>copy-webapp-runner</id> |
492 |
| - <phase>package</phase> |
493 |
| - <goals><goal>copy</goal></goals> |
494 |
| - <configuration> |
495 |
| - <artifactItems> |
496 |
| - <artifactItem> |
497 |
| - <groupId>com.heroku</groupId> |
498 |
| - <artifactId>webapp-runner</artifactId> |
499 |
| - <version>${webapp-runner.version}</version> |
500 |
| - <destFileName>webapp-runner.jar</destFileName> |
501 |
| - </artifactItem> |
502 |
| - </artifactItems> |
503 |
| - </configuration> |
504 |
| - </execution> |
505 | 477 | <execution>
|
506 | 478 | <id>copy-test-libs</id>
|
507 | 479 | <phase>package</phase>
|
|
527 | 499 | </execution>
|
528 | 500 | </executions>
|
529 | 501 | <configuration>
|
| 502 | + <archive> |
| 503 | + <index>true</index> |
| 504 | + <manifest> |
| 505 | + <addClasspath>false</addClasspath> |
| 506 | + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 507 | + </manifest> |
| 508 | + <manifestEntries> |
| 509 | + <Vaadin-Package-Version>1</Vaadin-Package-Version> |
| 510 | + </manifestEntries> |
| 511 | + </archive> |
530 | 512 | <failOnMissingWebXml>false</failOnMissingWebXml>
|
531 |
| - <archiveClasses>false</archiveClasses> |
| 513 | + <archiveClasses>true</archiveClasses> |
532 | 514 | <webResources>
|
533 | 515 | <resource>
|
534 | 516 | <directory>${basedir}/src/test/resources</directory>
|
|
538 | 520 | <directory>${project.build.directory}/classes/META-INF/VAADIN</directory>
|
539 | 521 | <targetPath>WEB-INF/classes/META-INF/VAADIN</targetPath>
|
540 | 522 | </resource>
|
| 523 | + <resource> |
| 524 | + <directory>${project.build.directory}/frontend</directory> |
| 525 | + <targetPath>frontend</targetPath> |
| 526 | + </resource> |
541 | 527 | <resource>
|
542 | 528 | <directory>${project.build.directory}/test-classes</directory>
|
543 | 529 | <targetPath>WEB-INF/classes</targetPath>
|
|
553 | 539 | </build>
|
554 | 540 | </profile>
|
555 | 541 |
|
| 542 | + <!-- Heroku profile --> |
| 543 | + <profile> |
| 544 | + <id>heroku</id> |
| 545 | + <build> |
| 546 | + <plugins> |
| 547 | + <plugin> |
| 548 | + <groupId>com.github.eirslett</groupId> |
| 549 | + <artifactId>frontend-maven-plugin</artifactId> |
| 550 | + <version>1.9.1</version> |
| 551 | + <executions> |
| 552 | + <execution> |
| 553 | + <id>install node and npm</id> |
| 554 | + <goals> |
| 555 | + <goal>install-node-and-npm</goal> |
| 556 | + </goals> |
| 557 | + </execution> |
| 558 | + </executions> |
| 559 | + <configuration> |
| 560 | + <nodeVersion>v12.16.1</nodeVersion> |
| 561 | + </configuration> |
| 562 | + </plugin> |
| 563 | + <plugin> |
| 564 | + <groupId>org.apache.maven.plugins</groupId> |
| 565 | + <artifactId>maven-dependency-plugin</artifactId> |
| 566 | + <executions> |
| 567 | + <execution> |
| 568 | + <id>copy-webapp-runner</id> |
| 569 | + <phase>package</phase> |
| 570 | + <goals><goal>copy</goal></goals> |
| 571 | + <configuration> |
| 572 | + <artifactItems> |
| 573 | + <artifactItem> |
| 574 | + <groupId>com.heroku</groupId> |
| 575 | + <artifactId>webapp-runner</artifactId> |
| 576 | + <version>${webapp-runner.version}</version> |
| 577 | + <destFileName>webapp-runner.jar</destFileName> |
| 578 | + </artifactItem> |
| 579 | + </artifactItems> |
| 580 | + </configuration> |
| 581 | + </execution> |
| 582 | + </executions> |
| 583 | + </plugin> |
| 584 | + </plugins> |
| 585 | + </build> |
| 586 | + </profile> |
| 587 | + |
556 | 588 | <profile>
|
557 | 589 | <id>heroku-deploy</id>
|
558 | 590 | <build>
|
|
0 commit comments