Skip to content

Commit 7c54d54

Browse files
author
Gabor
committed
separate maven build profiles
1 parent e28da0b commit 7c54d54

File tree

2 files changed

+70
-37
lines changed

2 files changed

+70
-37
lines changed

heroku-settings.xml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
44
<activeProfiles>
5+
<activeProfile>production</activeProfile>
56
<activeProfile>heroku</activeProfile>
67
</activeProfiles>
78
</settings>

pom.xml

+69-37
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@
158158
<scope>test</scope>
159159
</dependency>
160160
<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>
164164
<scope>test</scope>
165165
</dependency>
166166
<dependency>
@@ -343,6 +343,9 @@
343343
</goals>
344344
</execution>
345345
</executions>
346+
<configuration>
347+
<optimizeBundle>false</optimizeBundle>
348+
</configuration>
346349
</plugin>
347350
</plugins>
348351
</build>
@@ -461,47 +464,16 @@
461464
</build>
462465
</profile>
463466

464-
<!-- Heroku profile -->
467+
<!-- build war -->
465468
<profile>
466-
<id>heroku</id>
469+
<id>war</id>
467470
<build>
468471
<finalName>leaflet4vaadin-demo</finalName>
469472
<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>
486473
<plugin>
487474
<groupId>org.apache.maven.plugins</groupId>
488475
<artifactId>maven-dependency-plugin</artifactId>
489476
<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>
505477
<execution>
506478
<id>copy-test-libs</id>
507479
<phase>package</phase>
@@ -527,8 +499,18 @@
527499
</execution>
528500
</executions>
529501
<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>
530512
<failOnMissingWebXml>false</failOnMissingWebXml>
531-
<archiveClasses>false</archiveClasses>
513+
<archiveClasses>true</archiveClasses>
532514
<webResources>
533515
<resource>
534516
<directory>${basedir}/src/test/resources</directory>
@@ -538,6 +520,10 @@
538520
<directory>${project.build.directory}/classes/META-INF/VAADIN</directory>
539521
<targetPath>WEB-INF/classes/META-INF/VAADIN</targetPath>
540522
</resource>
523+
<resource>
524+
<directory>${project.build.directory}/frontend</directory>
525+
<targetPath>frontend</targetPath>
526+
</resource>
541527
<resource>
542528
<directory>${project.build.directory}/test-classes</directory>
543529
<targetPath>WEB-INF/classes</targetPath>
@@ -553,6 +539,52 @@
553539
</build>
554540
</profile>
555541

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+
556588
<profile>
557589
<id>heroku-deploy</id>
558590
<build>

0 commit comments

Comments
 (0)