pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  4. ~ contributor license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright ownership.
  6. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  7. ~ (the "License"); you may not use this file except in compliance with
  8. ~ the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <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">
  19. <parent>
  20. <artifactId>dolphinscheduler</artifactId>
  21. <groupId>org.apache.dolphinscheduler</groupId>
  22. <version>dev-SNAPSHOT</version>
  23. </parent>
  24. <modelVersion>4.0.0</modelVersion>
  25. <artifactId>dolphinscheduler-ui</artifactId>
  26. <name>${project.artifactId}</name>
  27. <properties>
  28. <node.version>v16.13.1</node.version>
  29. <pnpm.version>v6.32.6</pnpm.version>
  30. <sonar.sources>src</sonar.sources>
  31. <frontend-maven-plugin.version>1.12.1</frontend-maven-plugin.version>
  32. </properties>
  33. <profiles>
  34. <profile>
  35. <id>release</id>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>com.github.eirslett</groupId>
  40. <artifactId>frontend-maven-plugin</artifactId>
  41. <version>${frontend-maven-plugin.version}</version>
  42. <configuration>
  43. <pnpmInheritsProxyConfigFromMaven>false</pnpmInheritsProxyConfigFromMaven>
  44. </configuration>
  45. <executions>
  46. <execution>
  47. <id>install node and pnpm</id>
  48. <goals>
  49. <goal>install-node-and-pnpm</goal>
  50. </goals>
  51. <configuration>
  52. <nodeVersion>${node.version}</nodeVersion>
  53. <pnpmVersion>${pnpm.version}</pnpmVersion>
  54. </configuration>
  55. </execution>
  56. <execution>
  57. <id>pnpm install</id>
  58. <goals>
  59. <goal>pnpm</goal>
  60. </goals>
  61. <phase>generate-resources</phase>
  62. <configuration>
  63. <arguments>install</arguments>
  64. </configuration>
  65. </execution>
  66. <execution>
  67. <id>pnpm run build:prod</id>
  68. <goals>
  69. <goal>pnpm</goal>
  70. </goals>
  71. <configuration>
  72. <arguments>run build:prod</arguments>
  73. </configuration>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </profile>
  80. </profiles>
  81. </project>