Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.97 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. <parent>
  6. <groupId>com.github.dandelion</groupId>
  7. <artifactId>dandelion-samples-parent</artifactId>
  8. <version>0.10.0</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11.  
  12. <artifactId>datatables-jsp-ajax</artifactId>
  13. <packaging>war</packaging>
  14.  
  15. <name>Dandelion :: Samples :: Datatables :: datatables-jsp-ajax</name>
  16.  
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20.  
  21. <dependencies>
  22. <!-- Dandelion-Datatables -->
  23. <dependency>
  24. <groupId>com.github.dandelion</groupId>
  25. <artifactId>datatables-jsp</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.github.dandelion</groupId>
  29. <artifactId>datatables-spring3</artifactId>
  30. </dependency>
  31.  
  32. <!-- Spring + Jackson -->
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-webmvc</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-orm</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.codehaus.jackson</groupId>
  47. <artifactId>jackson-mapper-asl</artifactId>
  48. </dependency>
  49.  
  50. <!-- JSTL -->
  51. <dependency>
  52. <groupId>jstl</groupId>
  53. <artifactId>jstl</artifactId>
  54. </dependency>
  55.  
  56. <!-- Servlet -->
  57. <dependency>
  58. <groupId>javax.servlet</groupId>
  59. <artifactId>javax.servlet-api</artifactId>
  60. <scope>provided</scope>
  61. </dependency>
  62.  
  63. <!-- Tiles -->
  64. <dependency>
  65. <groupId>org.apache.tiles</groupId>
  66. <artifactId>tiles-jsp</artifactId>
  67. </dependency>
  68.  
  69. <!-- Hibernate as JPA implementation -->
  70. <dependency>
  71. <groupId>org.hibernate</groupId>
  72. <artifactId>hibernate-entitymanager</artifactId>
  73. </dependency>
  74.  
  75. <!-- Database drivers -->
  76. <!-- H2 (local) -->
  77. <dependency>
  78. <groupId>com.h2database</groupId>
  79. <artifactId>h2</artifactId>
  80. </dependency>
  81.  
  82. <!-- Logging -->
  83. <dependency>
  84. <groupId>ch.qos.logback</groupId>
  85. <artifactId>logback-classic</artifactId>
  86. </dependency>
  87. </dependencies>
  88.  
  89. <build>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-compiler-plugin</artifactId>
  94. </plugin>
  95. <plugin>
  96. <groupId>org.mortbay.jetty</groupId>
  97. <artifactId>jetty-maven-plugin</artifactId>
  98. </plugin>
  99. <plugin>
  100. <groupId>org.apache.tomcat.maven</groupId>
  101. <artifactId>tomcat7-maven-plugin</artifactId>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>
  106.  
  107. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  108. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  109. <modelVersion>4.0.0</modelVersion>
  110.  
  111. <groupId>com.github.dandelion</groupId>
  112. <artifactId>dandelion-samples-parent</artifactId>
  113. <version>0.10.0</version>
  114. <packaging>pom</packaging>
  115.  
  116. <name>Dandelion :: Samples :: Parent</name>
  117. <description>Parent of all Dandelion samples</description>
  118.  
  119. <modules>
  120. <module>dandelion/dandelion-jsp-starter</module>
  121. <module>dandelion/dandelion-thymeleaf-starter</module>
  122. <module>datatables/datatables-jsp-starter</module>
  123. <module>datatables/datatables-jsp-themes</module>
  124. <module>datatables/datatables-jsp-plugins</module>
  125. <module>datatables/datatables-jsp-configuration-groups</module>
  126. <module>datatables/datatables-jsp-extension</module>
  127. <module>datatables/datatables-jsp-ajax</module>
  128. <module>datatables/datatables-jsp-i18n-struts1</module>
  129. <module>datatables/datatables-jsp-i18n-struts2</module>
  130. <module>datatables/datatables-jsp-export</module>
  131. <module>datatables/datatables-thymeleaf-starter</module>
  132. <module>datatables/datatables-thymeleaf-themes</module>
  133. <module>datatables/datatables-thymeleaf-plugins</module>
  134. <module>datatables/datatables-thymeleaf-configuration-groups</module>
  135. <module>datatables/datatables-thymeleaf-ajax</module>
  136. <module>datatables/datatables-thymeleaf-export</module>
  137. <module>datatables/datatables-thymeleaf-extension</module>
  138. </modules>
  139.  
  140. <properties>
  141. <!-- Configuration -->
  142. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  143.  
  144. <!-- Dependencies -->
  145. <dandelion.version>0.10.0</dandelion.version>
  146. <dandelion.datatables.version>0.10.0</dandelion.datatables.version>
  147. <jstl.version>1.2</jstl.version>
  148. <tiles.version>2.2.2</tiles.version>
  149. <servlet-api.version>3.0.1</servlet-api.version>
  150. <thymeleaf.version>2.1.3.RELEASE</thymeleaf.version>
  151. <thymeleaf.layout.version>1.2.4</thymeleaf.layout.version>
  152. <thymeleaf.tiles2.version>2.1.1.RELEASE</thymeleaf.tiles2.version>
  153. <spring.version>3.2.8.RELEASE</spring.version>
  154. <jackson.version>1.9.13</jackson.version>
  155. <struts1.version>1.3.10</struts1.version>
  156. <struts2.version>2.1.8</struts2.version>
  157. <hibernate.version>4.3.5.Final</hibernate.version>
  158. <slf4j-api.version>1.7.5</slf4j-api.version>
  159. <logback.version>1.1.2</logback.version>
  160. <h2.version>1.3.175</h2.version>
  161.  
  162. <!-- Maven plugins -->
  163. <maven-compiler-plugin.version>3.0</maven-compiler-plugin.version>
  164. <tomcat7-maven-plugin.version>2.0</tomcat7-maven-plugin.version>
  165. <jetty-maven-plugin.version>8.1.8.v20121106</jetty-maven-plugin.version>
  166. <spring-boot-maven-plugin.version>1.0.2.RELEASE</spring-boot-maven-plugin.version>
  167. </properties>
  168.  
  169. <dependencyManagement>
  170. <dependencies>
  171. <!-- Dandelion -->
  172. <dependency>
  173. <groupId>com.github.dandelion</groupId>
  174. <artifactId>dandelion-jsp</artifactId>
  175. <version>${dandelion.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.github.dandelion</groupId>
  179. <artifactId>dandelion-thymeleaf</artifactId>
  180. <version>${dandelion.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.github.dandelion</groupId>
  184. <artifactId>dandelion-spring3</artifactId>
  185. <version>${dandelion.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.github.dandelion</groupId>
  189. <artifactId>dandelion-ehcache</artifactId>
  190. <version>${dandelion.version}</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.github.dandelion</groupId>
  194. <artifactId>dandelion-webjars</artifactId>
  195. <version>${dandelion.version}</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>com.github.dandelion</groupId>
  199. <artifactId>dandelion-yuicompressor</artifactId>
  200. <version>${dandelion.version}</version>
  201. </dependency>
  202.  
  203. <!-- Dandelion-Datatables -->
  204. <dependency>
  205. <groupId>com.github.dandelion</groupId>
  206. <artifactId>datatables-jsp</artifactId>
  207. <version>${dandelion.datatables.version}</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>com.github.dandelion</groupId>
  211. <artifactId>datatables-thymeleaf</artifactId>
  212. <version>${dandelion.datatables.version}</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>com.github.dandelion</groupId>
  216. <artifactId>datatables-spring3</artifactId>
  217. <version>${dandelion.datatables.version}</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>com.github.dandelion</groupId>
  221. <artifactId>datatables-compression-yui</artifactId>
  222. <version>${dandelion.datatables.version}</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>com.github.dandelion</groupId>
  226. <artifactId>datatables-export-poi</artifactId>
  227. <version>${dandelion.datatables.version}</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>com.github.dandelion</groupId>
  231. <artifactId>datatables-export-poi-ooxml</artifactId>
  232. <version>${dandelion.datatables.version}</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>com.github.dandelion</groupId>
  236. <artifactId>datatables-export-itext</artifactId>
  237. <version>${dandelion.datatables.version}</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>com.github.dandelion</groupId>
  241. <artifactId>datatables-struts1</artifactId>
  242. <version>${dandelion.datatables.version}</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>com.github.dandelion</groupId>
  246. <artifactId>datatables-struts2</artifactId>
  247. <version>${dandelion.datatables.version}</version>
  248. </dependency>
  249.  
  250. <!-- Spring -->
  251. <dependency>
  252. <groupId>org.springframework</groupId>
  253. <artifactId>spring-web</artifactId>
  254. <version>${spring.version}</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.springframework</groupId>
  258. <artifactId>spring-webmvc</artifactId>
  259. <version>${spring.version}</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.springframework</groupId>
  263. <artifactId>spring-orm</artifactId>
  264. <version>${spring.version}</version>
  265. </dependency>
  266.  
  267. <!-- Struts 1 -->
  268. <dependency>
  269. <groupId>org.apache.struts</groupId>
  270. <artifactId>struts-core</artifactId>
  271. <version>${struts1.version}</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.apache.struts</groupId>
  275. <artifactId>struts-taglib</artifactId>
  276. <version>${struts1.version}</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>org.apache.struts</groupId>
  280. <artifactId>struts-extras</artifactId>
  281. <version>${struts1.version}</version>
  282. </dependency>
  283.  
  284. <!-- Struts 2 -->
  285. <dependency>
  286. <groupId>org.apache.struts</groupId>
  287. <artifactId>struts2-core</artifactId>
  288. <version>${struts2.version}</version>
  289. </dependency>
  290.  
  291. <!-- JSTL -->
  292. <dependency>
  293. <groupId>jstl</groupId>
  294. <artifactId>jstl</artifactId>
  295. <version>${jstl.version}</version>
  296. </dependency>
  297.  
  298. <!-- Servlet -->
  299. <dependency>
  300. <groupId>javax.servlet</groupId>
  301. <artifactId>javax.servlet-api</artifactId>
  302. <version>${servlet-api.version}</version>
  303. <scope>provided</scope>
  304. </dependency>
  305.  
  306. <!-- Jackson -->
  307. <dependency>
  308. <groupId>org.codehaus.jackson</groupId>
  309. <artifactId>jackson-mapper-asl</artifactId>
  310. <version>${jackson.version}</version>
  311. </dependency>
  312.  
  313. <!-- Thymeleaf -->
  314. <dependency>
  315. <groupId>org.thymeleaf</groupId>
  316. <artifactId>thymeleaf</artifactId>
  317. <version>${thymeleaf.version}</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>org.thymeleaf</groupId>
  321. <artifactId>thymeleaf-spring3</artifactId>
  322. <version>${thymeleaf.version}</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>org.thymeleaf.extras</groupId>
  326. <artifactId>thymeleaf-extras-tiles2</artifactId>
  327. <version>${thymeleaf.tiles2.version}</version>
  328. </dependency>
  329. <dependency>
  330. <groupId>nz.net.ultraq.thymeleaf</groupId>
  331. <artifactId>thymeleaf-layout-dialect</artifactId>
  332. <version>${thymeleaf.layout.version}</version>
  333. </dependency>
  334.  
  335. <!-- Tiles -->
  336. <dependency>
  337. <groupId>org.apache.tiles</groupId>
  338. <artifactId>tiles-core</artifactId>
  339. <version>${tiles.version}</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>org.apache.tiles</groupId>
  343. <artifactId>tiles-api</artifactId>
  344. <version>${tiles.version}</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>org.apache.tiles</groupId>
  348. <artifactId>tiles-jsp</artifactId>
  349. <version>${tiles.version}</version>
  350. </dependency>
  351. <dependency>
  352. <groupId>org.apache.tiles</groupId>
  353. <artifactId>tiles-servlet</artifactId>
  354. <version>${tiles.version}</version>
  355. </dependency>
  356.  
  357. <!-- Sitemesh -->
  358. <dependency>
  359. <groupId>org.sitemesh</groupId>
  360. <artifactId>sitemesh</artifactId>
  361. <version>${sitemesh3.version}</version>
  362. </dependency>
  363.  
  364. <!-- Hibernate as JPA implementation -->
  365. <dependency>
  366. <groupId>org.hibernate</groupId>
  367. <artifactId>hibernate-core</artifactId>
  368. <version>${hibernate.version}</version>
  369. </dependency>
  370. <dependency>
  371. <groupId>org.hibernate</groupId>
  372. <artifactId>hibernate-entitymanager</artifactId>
  373. <version>${hibernate.version}</version>
  374. </dependency>
  375.  
  376. <!-- Database drivers -->
  377. <!-- H2 (local) -->
  378. <dependency>
  379. <groupId>com.h2database</groupId>
  380. <artifactId>h2</artifactId>
  381. <version>${h2.version}</version>
  382. </dependency>
  383.  
  384. <!-- Logging -->
  385. <dependency>
  386. <groupId>org.slf4j</groupId>
  387. <artifactId>slf4j-api</artifactId>
  388. <version>${slf4j-api.version}</version>
  389. </dependency>
  390. <dependency>
  391. <groupId>org.slf4j</groupId>
  392. <artifactId>jcl-over-slf4j</artifactId>
  393. <version>${slf4j-api.version}</version>
  394. </dependency>
  395.  
  396. <dependency>
  397. <groupId>ch.qos.logback</groupId>
  398. <artifactId>logback-classic</artifactId>
  399. <version>${logback.version}</version>
  400. </dependency>
  401. </dependencies>
  402. </dependencyManagement>
  403.  
  404. <build>
  405. <pluginManagement>
  406. <plugins>
  407. <plugin>
  408. <groupId>org.apache.maven.plugins</groupId>
  409. <artifactId>maven-compiler-plugin</artifactId>
  410. <version>${maven-compiler-plugin.version}</version>
  411. <configuration>
  412. <source>1.6</source>
  413. <target>1.6</target>
  414. </configuration>
  415. </plugin>
  416.  
  417. <!-- Jetty 8 -->
  418. <plugin>
  419. <groupId>org.mortbay.jetty</groupId>
  420. <artifactId>jetty-maven-plugin</artifactId>
  421. <version>${jetty-maven-plugin.version}</version>
  422. <configuration>
  423. <connectors>
  424. <connector
  425. implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
  426. <port>9090</port>
  427. <maxIdleTime>60000</maxIdleTime>
  428. </connector>
  429. </connectors>
  430. <webAppConfig>
  431. <contextPath>/${project.artifactId}</contextPath>
  432. </webAppConfig>
  433. </configuration>
  434. </plugin>
  435.  
  436. <!-- Tomcat 7 -->
  437. <plugin>
  438. <groupId>org.apache.tomcat.maven</groupId>
  439. <artifactId>tomcat7-maven-plugin</artifactId>
  440. <version>${tomcat7-maven-plugin.version}</version>
  441. <configuration>
  442. <server>tomcat-development-server</server>
  443. <port>9090</port>
  444. <path>/${project.artifactId}</path>
  445. </configuration>
  446. </plugin>
  447.  
  448. <!-- Spring Boot -->
  449. <plugin>
  450. <groupId>org.springframework.boot</groupId>
  451. <artifactId>spring-boot-maven-plugin</artifactId>
  452. <version>${spring-boot-maven-plugin.version}</version>
  453. </plugin>
  454. </plugins>
  455. </pluginManagement>
  456. </build>
  457. </project>
  458.  
  459. hibernate-core-4.1.6.Final.jarorghibernateinternalCoreMessageLogger.class
  460.  
  461. [INFO] ------------------------------------------------------------------------
  462. [INFO] Building Dandelion :: Samples :: Datatables :: datatables-jsp-ajax 0.10.0
  463. [INFO] ------------------------------------------------------------------------
  464. [INFO]
  465. [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ datatables-jsp-ajax ---
  466. [INFO] com.github.dandelion:datatables-jsp-ajax:war:0.10.0
  467. [INFO] +- com.github.dandelion:datatables-jsp:jar:0.10.0:compile
  468. [INFO] | +- com.github.dandelion:datatables-core:jar:0.10.0:compile
  469. [INFO] | | +- com.github.dandelion:dandelion-core:jar:0.10.0:compile
  470. [INFO] | | | +- com.fasterxml.jackson.core:jackson-core:jar:2.3.1:compile
  471. [INFO] | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.3.1:compile
  472. [INFO] | | | - com.fasterxml.jackson.core:jackson-databind:jar:2.3.1:compile
  473. [INFO] | | +- com.googlecode.json-simple:json-simple:jar:1.1.1:compile
  474. [INFO] | | | - junit:junit:jar:4.10:compile
  475. [INFO] | | | - org.hamcrest:hamcrest-core:jar:1.1:compile
  476. [INFO] | | - commons-beanutils:commons-beanutils:jar:1.8.3:compile
  477. [INFO] | +- com.github.dandelion:dandelion-jsp:jar:0.10.0:compile
  478. [INFO] | - org.slf4j:slf4j-api:jar:1.7.5:compile
  479. [INFO] +- com.github.dandelion:datatables-spring3:jar:0.10.0:compile
  480. [INFO] +- org.springframework:spring-web:jar:3.2.8.RELEASE:compile
  481. [INFO] | +- org.springframework:spring-aop:jar:3.2.8.RELEASE:compile
  482. [INFO] | | - aopalliance:aopalliance:jar:1.0:compile
  483. [INFO] | +- org.springframework:spring-beans:jar:3.2.8.RELEASE:compile
  484. [INFO] | +- org.springframework:spring-context:jar:3.2.8.RELEASE:compile
  485. [INFO] | - org.springframework:spring-core:jar:3.2.8.RELEASE:compile
  486. [INFO] | - commons-logging:commons-logging:jar:1.1.3:compile
  487. [INFO] +- org.springframework:spring-webmvc:jar:3.2.8.RELEASE:compile
  488. [INFO] | - org.springframework:spring-expression:jar:3.2.8.RELEASE:compile
  489. [INFO] +- org.springframework:spring-orm:jar:3.2.8.RELEASE:compile
  490. [INFO] | +- org.springframework:spring-jdbc:jar:3.2.8.RELEASE:compile
  491. [INFO] | - org.springframework:spring-tx:jar:3.2.8.RELEASE:compile
  492. [INFO] +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile
  493. [INFO] | - org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile
  494. [INFO] +- jstl:jstl:jar:1.2:compile
  495. [INFO] +- javax.servlet:javax.servlet-api:jar:3.0.1:provided
  496. [INFO] +- org.apache.tiles:tiles-jsp:jar:2.2.2:compile
  497. [INFO] | +- org.apache.tiles:tiles-servlet:jar:2.2.2:compile
  498. [INFO] | | - org.apache.tiles:tiles-core:jar:2.2.2:compile
  499. [INFO] | | +- commons-digester:commons-digester:jar:2.0:compile
  500. [INFO] | | - org.slf4j:jcl-over-slf4j:jar:1.7.5:compile
  501. [INFO] | - org.apache.tiles:tiles-template:jar:2.2.2:compile
  502. [INFO] | - org.apache.tiles:tiles-api:jar:2.2.2:compile
  503. [INFO] +- org.hibernate:hibernate-entitymanager:jar:4.3.5.Final:compile
  504. [INFO] | +- org.jboss.logging:jboss-logging:jar:3.1.3.GA:compile
  505. [INFO] | +- org.jboss.logging:jboss-logging-annotations:jar:1.2.0.Beta1:compile
  506. [INFO] | +- org.hibernate:hibernate-core:jar:4.3.5.Final:compile
  507. [INFO] | | +- antlr:antlr:jar:2.7.7:compile
  508. [INFO] | | - org.jboss:jandex:jar:1.1.0.Final:compile
  509. [INFO] | +- dom4j:dom4j:jar:1.6.1:compile
  510. [INFO] | | - xml-apis:xml-apis:jar:1.0.b2:compile
  511. [INFO] | +- org.hibernate.common:hibernate-commons-annotations:jar:4.0.4.Final:compile
  512. [INFO] | +- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:jar:1.0.0.Final:compile
  513. [INFO] | +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.0.0.Final:compile
  514. [INFO] | - org.javassist:javassist:jar:3.18.1-GA:compile
  515. [INFO] +- com.h2database:h2:jar:1.3.175:compile
  516. [INFO] - ch.qos.logback:logback-classic:jar:1.1.2:compile
  517. [INFO] - ch.qos.logback:logback-core:jar:1.1.2:compile
  518. [INFO] ------------------------------------------------------------------------
  519. [INFO] BUILD SUCCESS
  520. [INFO] ------------------------------------------------------------------------
  521. [INFO] Total time: 3.576 s
  522. [INFO] Finished at: 2014-05-28T20:58:20+01:00
  523.  
  524. <dependency>
  525. <groupId>org.hibernate</groupId>
  526. <artifactId>hibernate-core</artifactId>
  527. <version>5.2.2.Final</version>
  528. </dependency>
  529. <dependency>
  530. <groupId>org.hibernate</groupId>
  531. <artifactId>hibernate-entitymanager</artifactId>
  532. <version>5.2.2.Final</version>
  533. </dependency>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement