pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>h5app-corp-quickstart</artifactId>
  7. <groupId>com.dingtalk</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>frontend</artifactId>
  12. <properties>
  13. <main.basedir>${project.basedir}/..</main.basedir>
  14. <frontend-maven-plugin.version>1.6</frontend-maven-plugin.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-install-plugin</artifactId>
  20. <version>2.5.2</version>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>com.github.eirslett</groupId>
  27. <artifactId>frontend-maven-plugin</artifactId>
  28. <version>${frontend-maven-plugin.version}</version>
  29. <configuration>
  30. <installDirectory>target</installDirectory>
  31. <nodeVersion>v12.15.0</nodeVersion>
  32. <yarnVersion>v1.22.18</yarnVersion>
  33. </configuration>
  34. </plugin>
  35. <plugin>
  36. <groupId>com.mycila</groupId>
  37. <artifactId>license-maven-plugin</artifactId>
  38. <version>3.0</version>
  39. <executions>
  40. <execution>
  41. <phase>none</phase>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. <plugin>
  46. <groupId>net.orfjackal.retrolambda</groupId>
  47. <artifactId>retrolambda-maven-plugin</artifactId>
  48. <version>2.5.5</version>
  49. <executions>
  50. <execution>
  51. <phase>none</phase>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>