pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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>com.ag.ilog</groupId>
  7. <artifactId>AG-ILOG-WMS-3.0</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.ag.ilog</groupId>
  11. <artifactId>ilogBusinessSystem</artifactId>
  12. <version>1.0-SNAPSHOT</version>
  13. <packaging>war</packaging>
  14. <name>ilogBusinessSystem Maven Webapp</name>
  15. <!-- FIXME change it to the project's website -->
  16. <url>http://www.example.com</url>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <maven.compiler.source>1.7</maven.compiler.source>
  20. <maven.compiler.target>1.7</maven.compiler.target>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <version>4.11</version>
  27. <scope>test</scope>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <finalName>ilogBusinessSystem</finalName>
  32. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  33. <plugins>
  34. <plugin>
  35. <artifactId>maven-clean-plugin</artifactId>
  36. <version>3.1.0</version>
  37. </plugin>
  38. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  39. <plugin>
  40. <artifactId>maven-resources-plugin</artifactId>
  41. <version>3.0.2</version>
  42. </plugin>
  43. <plugin>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <version>3.8.0</version>
  46. </plugin>
  47. <plugin>
  48. <artifactId>maven-surefire-plugin</artifactId>
  49. <version>2.22.1</version>
  50. </plugin>
  51. <plugin>
  52. <artifactId>maven-war-plugin</artifactId>
  53. <version>3.2.2</version>
  54. </plugin>
  55. <plugin>
  56. <artifactId>maven-install-plugin</artifactId>
  57. <version>2.5.2</version>
  58. </plugin>
  59. <plugin>
  60. <artifactId>maven-deploy-plugin</artifactId>
  61. <version>2.8.2</version>
  62. </plugin>
  63. </plugins>
  64. </pluginManagement>
  65. </build>
  66. </project>