-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
84 lines (84 loc) · 3.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>flok</groupId>
<artifactId>flok</artifactId>
<packaging>pom</packaging>
<version>2</version>
<name>flok</name>
<description>Flok - managed migrations</description>
<organization>
<name>Flok</name>
<url>https://github.com/seangarner/flok</url>
</organization>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rpm-maven-plugin</artifactId>
<version>2.1-alpha-1</version>
<executions>
<execution>
<goals>
<goal>rpm</goal>
</goals>
</execution>
</executions>
<configuration>
<name>flok</name>
<version>${rpmversion}</version>
<release>${rpmrelease}</release>
<copyright>2013, Sean Garner <seanlgarner+flok@gmail.com></copyright>
<distribution>Amazon</distribution>
<group>Applications/System</group>
<packager>Sean Garner <seanlgarner+flok@gmail.com></packager>
<needarch>x86_64</needarch>
<prefix>/opt/ecommera/flok</prefix>
<defineStatements>
<defineStatement>_unpackaged_files_terminate_build 0</defineStatement>
</defineStatements>
<defaultFilemode>644</defaultFilemode>
<defaultDirmode>755</defaultDirmode>
<defaultUsername>root</defaultUsername>
<defaultGroupname>root</defaultGroupname>
<requires>
<require>nodejs > 0.8.0</require>
</requires>
<mappings>
<mapping>
<directory>/opt/ecommera/flok</directory>
<directoryIncluded>true</directoryIncluded>
<sources>
<source>
<location>./</location>
<excludes>
<exclude>bin</exclude>
</excludes>
</source>
</sources>
</mapping>
<mapping>
<directory>/opt/ecommera/flok/bin</directory>
<directoryIncluded>false</directoryIncluded>
<filemode>755</filemode>
<sources>
<source>
<location>bin</location>
</source>
</sources>
</mapping>
<mapping>
<directory>/usr/local/bin</directory>
<sources>
<softlinkSource>
<location>/opt/ecommera/flok/bin/flok</location>
<destination>flok</destination>
</softlinkSource>
</sources>
</mapping>
</mappings>
</configuration>
</plugin>
</plugins>
</build>
</project>