/scalate-distro/pom-pkg.xml

http://github.com/scalate/scalate · XML · 52 lines · 32 code · 4 blank · 16 comment · 0 complexity · e265de23a244717982fe4dd6dbb67445 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-pkg</artifactId>
  23. <packaging>pkg</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. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>