市长热线演示版

pom.xml 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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.7</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>commons-lang</groupId>
  44. <artifactId>commons-lang</artifactId>
  45. <version>2.5</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>commons-fileupload</groupId>
  49. <artifactId>commons-fileupload</artifactId>
  50. <version>1.2.2</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.0.1</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <finalName>${project.artifactId}</finalName>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-war-plugin</artifactId>
  72. <version>2.1.1</version>
  73. <configuration>
  74. <warName>${project.artifactId}</warName>
  75. <webXml>src/main/webapp/WEB-INF/web.xml</webXml>
  76. <webResources>
  77. <resource>
  78. <directory>src/main/webapp/WEB-INF/pages</directory>
  79. <filtering>true</filtering>
  80. <targetPath>WEB-INF/pages</targetPath>
  81. </resource>
  82. </webResources>
  83. </configuration>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.mortbay.jetty</groupId>
  87. <artifactId>jetty-maven-plugin</artifactId>
  88. <configuration>
  89. <webApp>
  90. <contextPath>/export</contextPath>
  91. </webApp>
  92. <!-- use war with command mvn jetty:run-exploded -->
  93. <war>${basedir}/target/highcharts-cloud-editor-web</war>
  94. <reload>manual</reload>
  95. <systemProperties>
  96. <systemProperty>
  97. <name>log4j.configuration</name>
  98. <value>file:./src/main/resources/log4j.properties</value>
  99. </systemProperty>
  100. </systemProperties>
  101. </configuration>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>