| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?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">
- <parent>
- <groupId>com.mokasz</groupId>
- <artifactId>fw-sample</artifactId>
- <version>1.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>pom</packaging>
- <artifactId>fw-sample-portal</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <!-- <build>-->
- <!-- <plugins>-->
- <!-- <plugin>-->
- <!-- <groupId>org.codehaus.mojo</groupId>-->
- <!-- <artifactId>exec-maven-plugin</artifactId>-->
- <!-- <version>1.6.0</version>-->
- <!-- <executions>-->
- <!-- <execution>-->
- <!-- <id>exec-npm-run-install</id>-->
- <!-- <phase>prepare-package</phase>-->
- <!-- <goals>-->
- <!-- <goal>exec</goal>-->
- <!-- </goals>-->
- <!-- <configuration>-->
- <!-- <executable>npm</executable>-->
- <!-- <arguments>-->
- <!-- <argument>install</argument>-->
- <!-- </arguments>-->
- <!-- </configuration>-->
- <!-- </execution>-->
- <!-- <execution>-->
- <!-- <id>exec-npm-run-build</id>-->
- <!-- <phase>prepare-package</phase>-->
- <!-- <goals>-->
- <!-- <goal>exec</goal>-->
- <!-- </goals>-->
- <!-- <configuration>-->
- <!-- <executable>npm</executable>-->
- <!-- <arguments>-->
- <!-- <argument>run</argument>-->
- <!-- <argument>build:${spring.profiles.active}</argument>-->
- <!-- </arguments>-->
- <!-- </configuration>-->
- <!-- </execution>-->
- <!-- </executions>-->
- <!-- </plugin>-->
- <!-- </plugins>-->
- <!-- </build>-->
- <profiles>
- <profile>
- <id>dev</id>
- <properties>
- <spring.profiles.active>dev</spring.profiles.active>
- </properties>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <profile>
- <id>qa</id>
- <properties>
- <spring.profiles.active>qa</spring.profiles.active>
- </properties>
- </profile>
- <profile>
- <id>stage</id>
- <properties>
- <spring.profiles.active>stage</spring.profiles.active>
- </properties>
- </profile>
- <profile>
- <id>prod</id>
- <properties>
- <spring.profiles.active>prod</spring.profiles.active>
- </properties>
- </profile>
- </profiles>
- </project>
|