xrcwrn

pom

Jan 19th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.85 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <groupId>com.atom</groupId>
  6. <artifactId>aa</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9.  
  10. <name>aa</name>
  11.  
  12. <properties>
  13. <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16.  
  17. <dependencies>
  18. <dependency>
  19. <groupId>javax</groupId>
  20. <artifactId>javaee-web-api</artifactId>
  21. <version>6.0</version>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.struts</groupId>
  26. <artifactId>struts2-core</artifactId>
  27. <version>2.3.16</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <version>4.8.2</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.struts</groupId>
  36. <artifactId>struts-annotations</artifactId>
  37. <version>1.0.5</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>commons-fileupload</groupId>
  41. <artifactId>commons-fileupload</artifactId>
  42. <version>1.3</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-io</groupId>
  46. <artifactId>commons-io</artifactId>
  47. <version>2.2</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>ognl</groupId>
  51. <artifactId>ognl</artifactId>
  52. <version>3.0.6</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.struts.xwork</groupId>
  56. <artifactId>xwork-core</artifactId>
  57. <version>2.3.16</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>asm</groupId>
  61. <artifactId>asm</artifactId>
  62. <version>3.3</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>asm</groupId>
  66. <artifactId>asm-commons</artifactId>
  67. <version>3.3</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>asm</groupId>
  71. <artifactId>asm-tree</artifactId>
  72. <version>3.3</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-lang3</artifactId>
  77. <version>3.1</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.freemarker</groupId>
  81. <artifactId>freemarker</artifactId>
  82. <version>2.3.19</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>javax.servlet</groupId>
  86. <artifactId>servlet-api</artifactId>
  87. <version>2.5</version>
  88. <scope>provided</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>javax.servlet.jsp</groupId>
  92. <artifactId>jsp-api</artifactId>
  93. <version>2.2</version>
  94. <scope>provided</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.struts</groupId>
  98. <artifactId>struts2-json-plugin</artifactId>
  99. <version>2.3.16</version>
  100. </dependency>
  101.  
  102. <!--hibernate-->
  103. <dependency>
  104. <groupId>org.hibernate</groupId>
  105. <artifactId>hibernate-core</artifactId>
  106. <version>4.0.1.Final</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.hibernate</groupId>
  110. <artifactId>hibernate-validator</artifactId>
  111. <version>4.2.0.Final</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.hibernate.common</groupId>
  115. <artifactId>hibernate-commons-annotations</artifactId>
  116. <version>4.0.1.Final</version>
  117. <classifier>tests</classifier>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.hibernate.javax.persistence</groupId>
  121. <artifactId>hibernate-jpa-2.0-api</artifactId>
  122. <version>1.0.1.Final</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.hibernate</groupId>
  126. <artifactId>hibernate-entitymanager</artifactId>
  127. <version>4.0.1.Final</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>javax.validation</groupId>
  131. <artifactId>validation-api</artifactId>
  132. <version>1.0.0.GA</version>
  133. <scope>provided</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.slf4j</groupId>
  137. <artifactId>slf4j-api</artifactId>
  138. <version>1.6.4</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.jboss.logging</groupId>
  142. <artifactId>jboss-logging</artifactId>
  143. <version>3.1.0.CR2</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.slf4j</groupId>
  147. <artifactId>slf4j-log4j12</artifactId>
  148. <version>1.6.4</version>
  149. </dependency>
  150. <!-- mysql-->
  151. <dependency>
  152. <groupId>mysql</groupId>
  153. <artifactId>mysql-connector-java</artifactId>
  154. <version>5.1.36</version>
  155. </dependency>
  156. <!--java mail-->
  157. <dependency>
  158. <groupId>javax.mail</groupId>
  159. <artifactId>mail</artifactId>
  160. <version>1.4.7</version>
  161. </dependency>
  162. <!--filter-->
  163. <dependency>
  164. <groupId>com.jhlabs</groupId>
  165. <artifactId>filters</artifactId>
  166. <version>2.0.235-1</version>
  167. </dependency>
  168. <!--Image scaling-->
  169. <dependency>
  170. <groupId>com.mortennobel</groupId>
  171. <artifactId>java-image-scaling</artifactId>
  172. <version>0.8.6</version>
  173. </dependency>
  174. <!-- jsoup-->
  175. <dependency>
  176. <groupId>org.jsoup</groupId>
  177. <artifactId>jsoup</artifactId>
  178. <version>1.8.3</version>
  179. </dependency>
  180. <!--commons-codec-->
  181. <dependency>
  182. <groupId>commons-codec</groupId>
  183. <artifactId>commons-codec</artifactId>
  184. <version>1.10</version>
  185. </dependency>
  186. <!--scribe-->
  187. <dependency>
  188. <groupId>org.scribe</groupId>
  189. <artifactId>scribe</artifactId>
  190. <version>1.3.7</version>
  191. </dependency>
  192. <!--quartz all-->
  193. <dependency>
  194. <groupId>org.quartz-scheduler</groupId>
  195. <artifactId>quartz</artifactId>
  196. <version>2.2.1</version>
  197. </dependency>
  198. <!--gson-->
  199. <dependency>
  200. <groupId>com.google.code.gson</groupId>
  201. <artifactId>gson</artifactId>
  202. <version>1.7.1</version>
  203. </dependency>
  204. </dependencies>
  205. <build>
  206. <plugins>
  207. <plugin>
  208. <groupId>org.codehaus.mojo</groupId>
  209. <artifactId>exec-maven-plugin</artifactId>
  210. <version>1.2.1</version>
  211. <executions>
  212. <execution>
  213. <goals>
  214. <goal>java</goal>
  215. </goals>
  216. </execution>
  217. </executions>
  218. <configuration>
  219. <mainClass>com.example.Main</mainClass>
  220. <arguments>
  221. <argument>foo</argument>
  222. <argument>bar</argument>
  223. </arguments>
  224. </configuration>
  225. </plugin>
  226. <plugin>
  227. <groupId>org.apache.maven.plugins</groupId>
  228. <artifactId>maven-compiler-plugin</artifactId>
  229. <version>2.3.2</version>
  230. <configuration>
  231. <source>1.6</source>
  232. <target>1.6</target>
  233. <compilerArguments>
  234. <endorseddirs>${endorsed.dir}</endorseddirs>
  235. </compilerArguments>
  236. </configuration>
  237. </plugin>
  238. <plugin>
  239. <groupId>org.apache.maven.plugins</groupId>
  240. <artifactId>maven-war-plugin</artifactId>
  241. <version>2.1.1</version>
  242. <configuration>
  243. <failOnMissingWebXml>false</failOnMissingWebXml>
  244. </configuration>
  245. </plugin>
  246. <plugin>
  247. <groupId>org.apache.maven.plugins</groupId>
  248. <artifactId>maven-dependency-plugin</artifactId>
  249. <version>2.1</version>
  250. <executions>
  251. <execution>
  252. <phase>validate</phase>
  253. <goals>
  254. <goal>copy</goal>
  255. </goals>
  256. <configuration>
  257. <outputDirectory>${endorsed.dir}</outputDirectory>
  258. <silent>true</silent>
  259. <artifactItems>
  260. <artifactItem>
  261. <groupId>javax</groupId>
  262. <artifactId>javaee-endorsed-api</artifactId>
  263. <version>6.0</version>
  264. <type>jar</type>
  265. </artifactItem>
  266. </artifactItems>
  267. </configuration>
  268. </execution>
  269. </executions>
  270. </plugin>
  271. </plugins>
  272. </build>
  273.  
  274. </project>
Add Comment
Please, Sign In to add comment