/scalate-spring-mvc/pom.xml

http://github.com/scalate/scalate · XML · 73 lines · 44 code · 10 blank · 19 comment · 0 complexity · 618eac2231d185415610b7587fe87d4b MD5 · raw file

  1. <!--
  2. Copyright (C) 2009-2011 the original author or authors.
  3. See the notice.md file distributed with this work for additional
  4. information regarding copyright ownership.
  5. Licensed under the Apache License, Version 2.0 (the "License");
  6. you may not use this file except in compliance with the License.
  7. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. -->
  15. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  16. <modelVersion>4.0.0</modelVersion>
  17. <parent>
  18. <groupId>org.scalatra.scalate</groupId>
  19. <artifactId>scalate-project_2.10</artifactId>
  20. <version>1.7.2-SNAPSHOT</version>
  21. </parent>
  22. <artifactId>scalate-spring-mvc_2.10</artifactId>
  23. <packaging>bundle</packaging>
  24. <name>${project.artifactId}</name>
  25. <description>Spring MVC integration for a Scalate web application</description>
  26. <dependencies>
  27. <dependency>
  28. <groupId>javax.servlet</groupId>
  29. <artifactId>servlet-api</artifactId>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.scalatra.scalate</groupId>
  34. <artifactId>scalate-core_2.10</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-webmvc</artifactId>
  40. <version>${org.springframework.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>ch.qos.logback</groupId>
  44. <artifactId>logback-classic</artifactId>
  45. <version>${logback-version}</version>
  46. <scope>runtime</scope>
  47. <optional>true</optional>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.mortbay.jetty</groupId>
  54. <artifactId>jetty-maven-plugin</artifactId>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>