pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.6.RELEASE</version>
  9. </parent>
  10. <groupId>com.platform</groupId>
  11. <artifactId>alldata</artifactId>
  12. <version>0.4.x</version>
  13. <packaging>pom</packaging>
  14. <name>AllData</name>
  15. <url>https://github.com/alldatacenter/alldata</url>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. </properties>
  21. <modules>
  22. <module>studio</module>
  23. </modules>
  24. <dependencies>
  25. <dependency>
  26. <groupId>junit</groupId>
  27. <artifactId>junit</artifactId>
  28. <version>4.11</version>
  29. <scope>test</scope>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <finalName>alldata-release-${project.version}</finalName>
  34. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-clean-plugin</artifactId>
  38. <version>3.1.0</version>
  39. </plugin>
  40. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  41. <plugin>
  42. <artifactId>maven-resources-plugin</artifactId>
  43. <version>3.0.2</version>
  44. </plugin>
  45. <plugin>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <version>3.8.0</version>
  48. </plugin>
  49. <plugin>
  50. <artifactId>maven-surefire-plugin</artifactId>
  51. <version>2.22.1</version>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-war-plugin</artifactId>
  55. <version>3.2.2</version>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-install-plugin</artifactId>
  59. <version>2.5.2</version>
  60. </plugin>
  61. <plugin>
  62. <artifactId>maven-deploy-plugin</artifactId>
  63. <version>2.8.2</version>
  64. </plugin>
  65. </plugins>
  66. </pluginManagement>
  67. </build>
  68. </project>