pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ /*
  4. ~ * Copyright 2019 http://www.hswebframework.org
  5. ~ *
  6. ~ * Licensed under the Apache License, Version 2.0 (the "License");
  7. ~ * you may not use this file except in compliance with the License.
  8. ~ * 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. -->
  19. <project xmlns="http://maven.apache.org/POM/4.0.0"
  20. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  22. <parent>
  23. <artifactId>hsweb-commons</artifactId>
  24. <groupId>org.hswebframework.web</groupId>
  25. <version>3.1.0-SNAPSHOT</version>
  26. <relativePath>../pom.xml</relativePath>
  27. </parent>
  28. <modelVersion>4.0.0</modelVersion>
  29. <artifactId>hsweb-commons-utils</artifactId>
  30. <description>通用模块-工具类</description>
  31. <build>
  32. <testResources>
  33. <testResource>
  34. <directory>src/test/resources</directory>
  35. <filtering>true</filtering>
  36. </testResource>
  37. </testResources>
  38. </build>
  39. <dependencies>
  40. <dependency>
  41. <groupId>javax.servlet</groupId>
  42. <artifactId>javax.servlet-api</artifactId>
  43. <optional>true</optional>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-context</artifactId>
  48. <optional>true</optional>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-webmvc</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.aspectj</groupId>
  57. <artifactId>aspectjweaver</artifactId>
  58. <optional>true</optional>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.hswebframework</groupId>
  62. <artifactId>hsweb-expands-script</artifactId>
  63. <optional>true</optional>
  64. </dependency>
  65. <dependency>
  66. <groupId>commons-beanutils</groupId>
  67. <artifactId>commons-beanutils</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.hswebframework</groupId>
  71. <artifactId>hsweb-easy-orm-core</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>fastjson</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>ch.qos.logback</groupId>
  80. <artifactId>logback-classic</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. </dependencies>
  84. </project>