PageRenderTime 43ms CodeModel.GetById 35ms RepoModel.GetById 1ms app.codeStats 0ms

/scalate-jruby/pom.xml

http://github.com/scalate/scalate
XML | 85 lines | 53 code | 12 blank | 20 comment | 0 complexity | b6df0f03569fd7237ee3f7e3d7d5fbbf MD5 | raw file
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (C) 2009-2011 the original author or authors.
  4. See the notice.md file distributed with this work for additional
  5. information regarding copyright ownership.
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <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">
  17. <modelVersion>4.0.0</modelVersion>
  18. <parent>
  19. <groupId>org.scalatra.scalate</groupId>
  20. <artifactId>scalate-project_2.10</artifactId>
  21. <version>1.7.2-SNAPSHOT</version>
  22. </parent>
  23. <artifactId>scalate-jruby_2.10</artifactId>
  24. <packaging>bundle</packaging>
  25. <name>${project.artifactId}</name>
  26. <description>Scalate integration with JRuby to access Ruby based filters such as sass</description>
  27. <properties>
  28. </properties>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.scalatra.scalate</groupId>
  32. <artifactId>scalate-core_2.10</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jruby</groupId>
  37. <artifactId>jruby-complete</artifactId>
  38. <version>1.6.7.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>javax.servlet</groupId>
  42. <artifactId>servlet-api</artifactId>
  43. <optional>true</optional>
  44. </dependency>
  45. <!-- testing -->
  46. <dependency>
  47. <groupId>org.scalatra.scalate</groupId>
  48. <artifactId>scalate-test_2.10</artifactId>
  49. <version>${project.version}</version>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.scalatest</groupId>
  54. <artifactId>${scalatest-artifact}</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>junit</groupId>
  59. <artifactId>junit</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>ch.qos.logback</groupId>
  64. <artifactId>logback-classic</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. </dependencies>
  68. </project>