keeper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sf.buildbox</groupId>
<artifactId>keeper</artifactId>
<version>2.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.buildbox</groupId>
<artifactId>keeper</artifactId>
<version>2.0.0</version>
<packaging>pom</packaging>
<parent>
<groupId>net.sf.buildbox.maven</groupId>
<artifactId>buildbox-pom</artifactId>
<version>1.0.2-beta</version>
</parent>
<name>keeper:2.0.0</name>
<description>Keeper is a simple user-space daemon-control utility.</description>
<build>
<!-- -->
<finalName>${project.artifactId}</finalName>
<!-- -->
<plugins>
<!--
<plugin>
<groupId>org.vafer</groupId>
<artifactId>jdeb</artifactId>
<version>0.8-SNAPSHOT</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jdeb</goal>
</goals>
<configuration>
<controlDir>debian</controlDir>
<installDir>/usr/share/buildbox/${artifactId}</installDir>
<dataSet>
<data>
<src>bin/keeper</src>
<type>file</type>
<mapper>
<type>perm</type>
<filemode>755</filemode>
<prefix>/usr/share/buildbox/${artifactId}</prefix>
</mapper>
</data>
<data>
<src>bin/keeper.bashcompletion</src>
<type>file</type>
<mapper>
<type>perm</type>
<filemode>644</filemode>
<prefix>/etc/bash_completion.d</prefix>
</mapper>
</data>
<data>
<src>bin/pidwrite</src>
<type>file</type>
<mapper>
<type>perm</type>
<filemode>755</filemode>
<prefix>/usr/share/buildbox/${artifactId}</prefix>
</mapper>
</data>
<data>
<src>services</src>
<type>dir</type>
<excludes>**/.svn/**</excludes>
<mapper>
<type>perm</type>
<filemode>644</filemode>
<prefix>/usr/share/doc/buildbox/${artifactId}</prefix>
</mapper>
</data>
</dataSet>
</configuration>
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>make-distro</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<tar destfile="${project.build.directory}/${project.build.finalName}.tgz" compression="gzip">
<tarfileset dir="." includes="bin/keeper,bin/pidwrite" filemode="755" />
<tarfileset dir="." includes="bin/keeper.bashcompletion" />
</tar>
<attachartifact file="${project.build.directory}/${project.build.finalName}.tgz" type="tgz" />
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:svn:https://buildbox.svn.sourceforge.net/svnroot/buildbox/tags/net.sf.buildbox-keeper-2.0.0</connection>
<developerConnection>scm:svn:https://buildbox.svn.sourceforge.net/svnroot/buildbox/tags/net.sf.buildbox-keeper-2.0.0</developerConnection>
<url>https://buildbox.svn.sourceforge.net/svnroot/buildbox/tags/net.sf.buildbox-keeper-2.0.0</url>
</scm>
</project>