/maven-scalate-plugin/pom.xml

http://github.com/scalate/scalate · XML · 137 lines · 97 code · 19 blank · 21 comment · 0 complexity · b8f4e1db41fe29cd3f254a3256689f84 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/xsd/maven-4.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>maven-scalate-plugin_2.10</artifactId>
  24. <packaging>maven-plugin</packaging>
  25. <name>${project.artifactId}</name>
  26. <description>A Scalate Maven Plugin</description>
  27. <prerequisites>
  28. <maven>${maven-version}</maven>
  29. </prerequisites>
  30. <properties>
  31. <maven-version>3.0.0</maven-version>
  32. <wagonVersion>2.2</wagonVersion>
  33. </properties>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.scala-lang</groupId>
  37. <artifactId>scala-library</artifactId>
  38. <version>${scala-version}</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.scala-lang</groupId>
  43. <artifactId>scala-compiler</artifactId>
  44. <version>${scala-version}</version>
  45. <scope>compile</scope>
  46. <optional>false</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>slf4j-nop</artifactId>
  51. <version>${slf4j-version}</version>
  52. </dependency>
  53. <!-- site deploy stuff -->
  54. <dependency>
  55. <groupId>commons-lang</groupId>
  56. <artifactId>commons-lang</artifactId>
  57. <version>2.6</version>
  58. </dependency>
  59. <!-- TODO I have no idea if this is right. Can somebody qualified please take a look? -->
  60. <dependency>
  61. <groupId>org.apache.maven</groupId>
  62. <artifactId>maven-compat</artifactId>
  63. <version>3.0</version> <!-- Was tied to maven-version, but 3.0.0 != 3.0 -->
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.maven.wagon</groupId>
  67. <artifactId>wagon-provider-api</artifactId>
  68. <version>${wagonVersion}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.maven.wagon</groupId>
  72. <artifactId>wagon-file</artifactId>
  73. <version>${wagonVersion}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.maven.wagon</groupId>
  77. <artifactId>wagon-ssh</artifactId>
  78. <version>${wagonVersion}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.maven.wagon</groupId>
  82. <artifactId>wagon-http-lightweight</artifactId>
  83. <version>${wagonVersion}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.codehaus.plexus</groupId>
  87. <artifactId>plexus-utils</artifactId>
  88. <version>2.0.2</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.codehaus.swizzle</groupId>
  92. <artifactId>swizzle-confluence</artifactId>
  93. <version>1.4</version>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <sourceDirectory>src/main/java</sourceDirectory>
  98. <testSourceDirectory>src/test/java</testSourceDirectory>
  99. <resources>
  100. <resource>
  101. <directory>src/main/resources</directory>
  102. <filtering>true</filtering>
  103. </resource>
  104. </resources>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-plugin-plugin</artifactId>
  109. <version>2.5.1</version>
  110. </plugin>
  111. </plugins>
  112. </build>
  113. </project>