pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright 2017-2022 Adobe.
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. -->
  14. <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">
  15. <modelVersion>4.0.0</modelVersion>
  16. <parent>
  17. <groupId>com.adobe.testing</groupId>
  18. <artifactId>s3mock-parent</artifactId>
  19. <version>2.4.16-SNAPSHOT</version>
  20. </parent>
  21. <artifactId>YiLi-Metastore</artifactId>
  22. <packaging>jar</packaging>
  23. <name>Metastore- Server</name>
  24. <properties>
  25. <start-class>com.adobe.testing.s3mock.S3MockApplication</start-class>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>com.fasterxml.jackson.dataformat</groupId>
  30. <artifactId>jackson-dataformat-xml</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>commons-codec</groupId>
  34. <artifactId>commons-codec</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>commons-io</groupId>
  38. <artifactId>commons-io</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.commons</groupId>
  42. <artifactId>commons-lang3</artifactId>
  43. </dependency>
  44. <!-- Test Dependencies -->
  45. <dependency>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpcore</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.glassfish.jaxb</groupId>
  52. <artifactId>jaxb-runtime</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.junit.jupiter</groupId>
  57. <artifactId>junit-jupiter-api</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.junit.jupiter</groupId>
  62. <artifactId>junit-jupiter-engine</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-configuration-processor</artifactId>
  68. <optional>true</optional>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-actuator</artifactId>
  73. </dependency>
  74. <!-- Use Jetty instead -->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-jetty</artifactId>
  78. <exclusions>
  79. <exclusion>
  80. <groupId>org.eclipse.jetty.websocket</groupId>
  81. <artifactId>javax-websocket-server-impl</artifactId>
  82. </exclusion>
  83. <exclusion>
  84. <groupId>org.eclipse.jetty.websocket</groupId>
  85. <artifactId>websocket-server</artifactId>
  86. </exclusion>
  87. </exclusions>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-test</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-web</artifactId>
  97. <exclusions>
  98. <exclusion>
  99. <groupId>org.hibernate</groupId>
  100. <artifactId>hibernate-validator</artifactId>
  101. </exclusion>
  102. <exclusion>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-tomcat</artifactId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.xmlunit</groupId>
  110. <artifactId>xmlunit-assertj3</artifactId>
  111. <scope>test</scope>
  112. </dependency>
  113. </dependencies>
  114. <build>
  115. <plugins>
  116. <plugin>
  117. <artifactId>maven-checkstyle-plugin</artifactId>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-maven-plugin</artifactId>
  122. <configuration>
  123. <mainClass>${start-class}</mainClass>
  124. <classifier>exec</classifier>
  125. </configuration>
  126. <executions>
  127. <execution>
  128. <goals>
  129. <goal>repackage</goal>
  130. </goals>
  131. </execution>
  132. </executions>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>