Skip to content
Snippets Groups Projects
Commit ba74d342 authored by Ubbo Veentjer's avatar Ubbo Veentjer
Browse files

deb build

parent 7d707f5b
No related branches found
No related tags found
No related merge requests found
...@@ -571,6 +571,39 @@ ...@@ -571,6 +571,39 @@
</plugins> </plugins>
</build> </build>
</profile> </profile>
<profile>
<id>textgrid.deb</id>
<build>
<plugins>
<plugin>
<artifactId>jdeb</artifactId>
<groupId>org.vafer</groupId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jdeb</goal>
</goals>
<configuration>
<snapshotExpand>true</snapshotExpand>
<dataSet>
<data>
<type>file</type>
<src>${project.build.directory}/${project.build.finalName}.war</src>
<mapper>
<type>perm</type>
<prefix>/var/textgrid/webapps</prefix>
</mapper>
</data>
</dataSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles> </profiles>
<organization> <organization>
<name>TextGrid</name> <name>TextGrid</name>
......
Package: [[artifactId]]
Version: [[version]]
Section: misc
Priority: low
Architecture: all
Description: [[description]]
Maintainer: info@textgrid.de
#!/bin/bash
invoke-rc.d tomcat-aggregator start
# return success, even if service not installed
exit 0
#!/bin/bash
invoke-rc.d tomcat-aggregator stop
# return success, even if service not installed
exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment