You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
3.4 KiB

8 years ago
8 years ago
  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. <parent>
  5. <groupId>com.highcharts.export</groupId>
  6. <artifactId>highcharts-export</artifactId>
  7. <version>2.1.0</version>
  8. </parent>
  9. <artifactId>highcharts-export-web</artifactId>
  10. <packaging>war</packaging>
  11. <name>highcharts-export-web</name>
  12. <url>http://maven.apache.org</url>
  13. <organization>
  14. <name>Highsoft</name>
  15. <url>http://highcharts.com</url>
  16. </organization>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.highcharts.export</groupId>
  20. <artifactId>highcharts-export-convert</artifactId>
  21. <version>2.1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-web</artifactId>
  26. <version>${spring.version}</version>
  27. <type>jar</type>
  28. <scope>compile</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-webmvc</artifactId>
  33. <version>${spring.version}</version>
  34. <type>jar</type>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>commons-codec</groupId>
  39. <artifactId>commons-codec</artifactId>
  40. <version>1.9</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-lang</groupId>
  44. <artifactId>commons-lang</artifactId>
  45. <version>2.6</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-fileupload</groupId>
  49. <artifactId>commons-fileupload</artifactId>
  50. <version>1.3.3</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>taglibs</groupId>
  54. <artifactId>standard</artifactId>
  55. <version>1.1.2</version>
  56. <type>jar</type>
  57. <scope>compile</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>javax.servlet</groupId>
  61. <artifactId>javax.servlet-api</artifactId>
  62. <version>3.1.0</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.jsoup</groupId>
  67. <artifactId>jsoup</artifactId>
  68. <version>1.8.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.owasp.esapi</groupId>
  72. <artifactId>esapi</artifactId>
  73. <version>2.1.0</version>
  74. </dependency>
  75. </dependencies>
  76. <build>
  77. <finalName>${project.artifactId}</finalName>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-war-plugin</artifactId>
  82. <version>2.5</version>
  83. <configuration>
  84. <warName>${project.artifactId}</warName>
  85. <webXml>src/main/webapp/WEB-INF/web.xml</webXml>
  86. <webResources>
  87. <resource>
  88. <directory>src/main/webapp/WEB-INF/pages</directory>
  89. <filtering>true</filtering>
  90. <targetPath>WEB-INF/pages</targetPath>
  91. </resource>
  92. </webResources>
  93. </configuration>
  94. </plugin>
  95. <plugin>
  96. <groupId>org.mortbay.jetty</groupId>
  97. <artifactId>jetty-maven-plugin</artifactId>
  98. <version>8.1.16.v20140903</version>
  99. <configuration>
  100. <webApp>
  101. <contextPath>/export</contextPath>
  102. </webApp>
  103. <!-- use war with command mvn jetty:run-exploded -->
  104. <war>${basedir}/target/highcharts-cloud-editor-web</war>
  105. <reload>manual</reload>
  106. <systemProperties>
  107. <systemProperty>
  108. <name>log4j.configuration</name>
  109. <value>file:./src/main/resources/log4j.properties</value>
  110. </systemProperty>
  111. </systemProperties>
  112. </configuration>
  113. </plugin>
  114. </plugins>
  115. </build>
  116. </project>