pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.usoftchina</groupId>
  8. <artifactId>usoftchina-cms</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>jpress-web-core</artifactId>
  12. <name>jpress-web-core</name>
  13. <url>http://jpress.io</url>
  14. <packaging>war</packaging>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.freemarker</groupId>
  26. <artifactId>freemarker</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>javax.mail</groupId>
  30. <artifactId>javax.mail-api</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.usoftchina</groupId>
  34. <artifactId>jpress-commons</artifactId>
  35. <version>1.0</version>
  36. <type>jar</type>
  37. <scope>compile</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.jfinal</groupId>
  41. <artifactId>jfinal</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.jfinal</groupId>
  45. <artifactId>jfinal-weixin</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>net.sf.ehcache</groupId>
  49. <artifactId>ehcache</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.usoftchina</groupId>
  53. <artifactId>jpress-model</artifactId>
  54. <version>1.0</version>
  55. <type>jar</type>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>javax.servlet</groupId>
  60. <artifactId>javax.servlet-api</artifactId>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.usoftchina</groupId>
  65. <artifactId>jpress-message</artifactId>
  66. <version>1.0</version>
  67. <type>jar</type>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.usoftchina</groupId>
  72. <artifactId>jpress-search-api</artifactId>
  73. <version>1.0</version>
  74. <type>jar</type>
  75. <scope>compile</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.usoftchina</groupId>
  79. <artifactId>jpress-cache</artifactId>
  80. <version>1.0</version>
  81. <type>jar</type>
  82. <scope>compile</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.uas.account</groupId>
  86. <artifactId>sso-core</artifactId>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <finalName>${project.artifactId}-${project.version}</finalName>
  91. <resources>
  92. <resource>
  93. <directory>src/main/config</directory>
  94. <includes>
  95. <include>**/*.*</include>
  96. </includes>
  97. <filtering>false</filtering>
  98. </resource>
  99. <resource>
  100. <directory>src/main/language</directory>
  101. <includes>
  102. <include>**/*.*</include>
  103. </includes>
  104. <filtering>false</filtering>
  105. </resource>
  106. </resources>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-war-plugin</artifactId>
  111. <configuration>
  112. <attachClasses>true</attachClasses>
  113. </configuration>
  114. <executions>
  115. </executions>
  116. </plugin>
  117. <plugin>
  118. <artifactId>maven-compiler-plugin</artifactId>
  119. <configuration>
  120. <encoding>UTF-8</encoding>
  121. </configuration>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. </project>