/scalate-jrebel/pom.xml

http://github.com/scalate/scalate · XML · 104 lines · 76 code · 8 blank · 20 comment · 0 complexity · f372a27c998151651f997a97a54d9918 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-jrebel_2.10</artifactId>
  24. <name>Scalate JRebel</name>
  25. <description>JRebel plugin to reload Scalate templates on class reload</description>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.scalatra.scalate</groupId>
  29. <artifactId>scalate-core_2.10</artifactId>
  30. <version>${project.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.zeroturnaround</groupId>
  34. <artifactId>jr-sdk</artifactId>
  35. <version>4.6.2</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <groupId>org.zeroturnaround</groupId>
  43. <artifactId>javarebel-maven-plugin</artifactId>
  44. <version>1.0.5</version>
  45. <executions>
  46. <execution>
  47. <id>generate-rebel-xml</id>
  48. <phase>process-resources</phase>
  49. <goals>
  50. <goal>generate</goal>
  51. </goals>
  52. </execution>
  53. </executions>
  54. <configuration>
  55. <packaging>jar</packaging>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-source-plugin</artifactId>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. <profiles>
  65. <profile>
  66. <id>download</id>
  67. <pluginRepositories>
  68. <pluginRepository>
  69. <id>zt-repo</id>
  70. <name>Zero turnaround repo</name>
  71. <url>http://repos.zeroturnaround.com/nexus/content/groups/zt-public</url>
  72. </pluginRepository>
  73. </pluginRepositories>
  74. <repositories>
  75. <repository>
  76. <id>zt-repo</id>
  77. <url>http://repos.zeroturnaround.com/nexus/content/groups/zt-public</url>
  78. <releases>
  79. <!-- <checksumPolicy>ignore</checksumPolicy>-->
  80. <updatePolicy>always</updatePolicy>
  81. <enabled>true</enabled>
  82. </releases>
  83. <snapshots>
  84. <updatePolicy>always</updatePolicy>
  85. <enabled>false</enabled>
  86. </snapshots>
  87. </repository>
  88. </repositories>
  89. </profile>
  90. </profiles>
  91. </project>