pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.mokasz</groupId>
  6. <artifactId>fw-sample</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>pom</packaging>
  12. <artifactId>fw-sample-portal</artifactId>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <!-- <build>-->
  18. <!-- <plugins>-->
  19. <!-- <plugin>-->
  20. <!-- <groupId>org.codehaus.mojo</groupId>-->
  21. <!-- <artifactId>exec-maven-plugin</artifactId>-->
  22. <!-- <version>1.6.0</version>-->
  23. <!-- <executions>-->
  24. <!-- <execution>-->
  25. <!-- <id>exec-npm-run-install</id>-->
  26. <!-- <phase>prepare-package</phase>-->
  27. <!-- <goals>-->
  28. <!-- <goal>exec</goal>-->
  29. <!-- </goals>-->
  30. <!-- <configuration>-->
  31. <!-- <executable>npm</executable>-->
  32. <!-- <arguments>-->
  33. <!-- <argument>install</argument>-->
  34. <!-- </arguments>-->
  35. <!-- </configuration>-->
  36. <!-- </execution>-->
  37. <!-- <execution>-->
  38. <!-- <id>exec-npm-run-build</id>-->
  39. <!-- <phase>prepare-package</phase>-->
  40. <!-- <goals>-->
  41. <!-- <goal>exec</goal>-->
  42. <!-- </goals>-->
  43. <!-- <configuration>-->
  44. <!-- <executable>npm</executable>-->
  45. <!-- <arguments>-->
  46. <!-- <argument>run</argument>-->
  47. <!-- <argument>build:${spring.profiles.active}</argument>-->
  48. <!-- </arguments>-->
  49. <!-- </configuration>-->
  50. <!-- </execution>-->
  51. <!-- </executions>-->
  52. <!-- </plugin>-->
  53. <!-- </plugins>-->
  54. <!-- </build>-->
  55. <profiles>
  56. <profile>
  57. <id>dev</id>
  58. <properties>
  59. <spring.profiles.active>dev</spring.profiles.active>
  60. </properties>
  61. <activation>
  62. <activeByDefault>true</activeByDefault>
  63. </activation>
  64. </profile>
  65. <profile>
  66. <id>qa</id>
  67. <properties>
  68. <spring.profiles.active>qa</spring.profiles.active>
  69. </properties>
  70. </profile>
  71. <profile>
  72. <id>stage</id>
  73. <properties>
  74. <spring.profiles.active>stage</spring.profiles.active>
  75. </properties>
  76. </profile>
  77. <profile>
  78. <id>prod</id>
  79. <properties>
  80. <spring.profiles.active>prod</spring.profiles.active>
  81. </properties>
  82. </profile>
  83. </profiles>
  84. </project>