-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
50 lines (50 loc) · 2.1 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>de.unibayreuth.bayceer</groupId>
<artifactId>python3-campbell-logger</artifactId>
<version>1.2.0</version>
<properties>
<name>python-campbell-logger</name>
<release>bullseye</release>
</properties>
<build>
<plugins>
<plugin>
<artifactId>jdeb</artifactId>
<groupId>org.vafer</groupId>
<version>1.7</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jdeb</goal>
</goals>
<configuration>
<deb>${project.build.directory}/${project.artifactId}-${project.version}+${release}.deb</deb>
<controlDir>${project.basedir}/deb/control</controlDir>
<verbose>false</verbose>
<dataSet>
<data>
<src>${project.basedir}/campbell</src>
<mapper>
<type>perm</type>
<prefix>/usr/lib/python3/dist-packages/campbell</prefix>
</mapper>
<type>directory</type>
</data>
<data>
<src>${project.basedir}/demo</src>
<mapper>
<type>perm</type>
<prefix>/usr/share/doc/python3-campbell-logger/demo</prefix>
</mapper>
<type>directory</type>
</data>
</dataSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>