pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  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>cn.vbdsm</groupId>
  6. <artifactId>vbdsm-web</artifactId>
  7. <version>2.1.0</version>
  8. </parent>
  9. <artifactId>vbdsm-explorer</artifactId>
  10. <name>${project.artifactId}</name>
  11. <packaging>war</packaging>
  12. <properties>
  13. <jsp.api.version>2.0</jsp.api.version>
  14. <javacc.version>4.1</javacc.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>javax.servlet</groupId>
  19. <artifactId>servlet-api</artifactId>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.twmacinta</groupId>
  24. <artifactId>fastmd5</artifactId>
  25. <version>1.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>ch.ethz.ssh2</groupId>
  29. <artifactId>ganymed-ssh2</artifactId>
  30. <version>2.1.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.vbdsm</groupId>
  38. <artifactId>vbdsm-base</artifactId>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <finalName>ROOT</finalName>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.mortbay.jetty</groupId>
  46. <artifactId>maven-jetty-plugin</artifactId>
  47. <configuration>
  48. <webDefaultXml>src/main/resources/webdefault.xml</webDefaultXml>
  49. <contextPath>/</contextPath>
  50. <connectors>
  51. <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
  52. <port>7086</port>
  53. </connector>
  54. </connectors>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>