Ei kuvausta

pom.xml 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. <groupId>com.ekexiu</groupId>
  5. <artifactId>portal</artifactId>
  6. <version>0.0.1</version>
  7. <packaging>war</packaging>
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. </properties>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.postgresql</groupId>
  14. <artifactId>postgresql</artifactId>
  15. <version>9.4.1207.jre7</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.github.penggle</groupId>
  19. <artifactId>kaptcha</artifactId>
  20. <version>2.3.2</version>
  21. <exclusions>
  22. <exclusion>
  23. <artifactId>javax.servlet-api</artifactId>
  24. <groupId>javax.servlet</groupId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.jfw</groupId>
  30. <artifactId>jfwApt</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.jfw</groupId>
  36. <artifactId>jfwAptOrm</artifactId>
  37. <version>0.0.1-SNAPSHOT</version>
  38. <optional>true</optional>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.jfw</groupId>
  42. <artifactId>jfwAptWeb</artifactId>
  43. <version>0.0.1-SNAPSHOT</version>
  44. <optional>true</optional>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.jfw</groupId>
  48. <artifactId>jfwUtil</artifactId>
  49. <version>0.0.1-SNAPSHOT</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.jfw</groupId>
  53. <artifactId>jfwWebUtil</artifactId>
  54. <version>0.0.1-SNAPSHOT</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>javax.servlet</groupId>
  58. <artifactId>servlet-api</artifactId>
  59. <scope>provided</scope>
  60. <version>2.5</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>druid</artifactId>
  65. <version>1.0.20</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>javax.mail</groupId>
  69. <artifactId>mail</artifactId>
  70. <version>1.4</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-io</groupId>
  74. <artifactId>commons-io</artifactId>
  75. <version>1.3.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-fileupload</groupId>
  79. <artifactId>commons-fileupload</artifactId>
  80. <version>1.3.2</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.slf4j</groupId>
  84. <artifactId>slf4j-log4j12</artifactId>
  85. <version>1.7.21</version>
  86. </dependency>
  87. </dependencies>
  88. <build>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-compiler-plugin</artifactId>
  93. <version>3.1</version>
  94. <configuration>
  95. <source>1.7</source>
  96. <target>1.7</target>
  97. <compilerArgs> <compilerArg>-g</compilerArg> </compilerArgs>
  98. </configuration>
  99. </plugin>
  100. <plugin>
  101. <groupId>org.mortbay.jetty</groupId>
  102. <artifactId>jetty-maven-plugin</artifactId>
  103. <version>8.1.0.RC5</version>
  104. <configuration>
  105. <stopPort>9966</stopPort>
  106. <stopKey>foo</stopKey>
  107. <scanIntervalSeconds>10</scanIntervalSeconds>
  108. <webApp>
  109. <contextPath>/</contextPath>
  110. </webApp>
  111. <reload>manual</reload>
  112. </configuration>
  113. </plugin>
  114. </plugins>
  115. <finalName>${project.artifactId}</finalName>
  116. </build>
  117. </project>