PageRenderTime 22ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/scalate-distro/pom-deb.xml

http://github.com/scalate/scalate
XML | 56 lines | 36 code | 4 blank | 16 comment | 0 complexity | fc81f736e73a94350915e309cac00b39 MD5 | raw file
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (C) 2009 Progress Software, Inc.
  4. http://fusesource.com
  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.fusesource.scalate</groupId>
  19. <artifactId>scalate-project</artifactId>
  20. <version>1.1-SNAPSHOT</version>
  21. </parent>
  22. <artifactId>scalate-deb</artifactId>
  23. <packaging>dpkg</packaging>
  24. <name>Scalate :: Distro</name>
  25. <description>Puts together the Scalate distribution</description>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <groupId>org.codehaus.mojo</groupId>
  30. <artifactId>unix-maven-plugin</artifactId>
  31. <extensions>true</extensions>
  32. <configuration>
  33. <contact>Scalate</contact>
  34. <contactEmail>scalate@googlegroups.com</contactEmail>
  35. <assembly>
  36. <extractFile>
  37. <archive>target/scalate-${project.version}-unix-bin.tar.gz</archive>
  38. <to>/opt/scalate</to>
  39. </extractFile>
  40. </assembly>
  41. <dpkg>
  42. <section>Applications/Engineering</section>
  43. <priority>1</priority>
  44. </dpkg>
  45. </configuration>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>