-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
55 lines (50 loc) · 2.03 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
<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>eu.unifiedviews.packages</groupId>
<artifactId>unifiedviews-packages</artifactId>
<version>2.1.2</version>
<name>unifiedviews-packages</name>
<packaging>pom</packaging>
<description />
<modules>
<module>unifiedviews-mysql</module>
<module>unifiedviews-pgsql</module>
<module>unifiedviews-backend</module>
<module>unifiedviews-backend-mysql</module>
<module>unifiedviews-backend-pgsql</module>
<module>unifiedviews-backend-shared</module>
<module>unifiedviews-webapp</module>
<module>unifiedviews-webapp-mysql</module>
<module>unifiedviews-webapp-pgsql</module>
<module>unifiedviews-webapp-shared</module>
<module>unifiedviews-plugins</module>
</modules>
<properties>
<debian-package-version>2.1.2~</debian-package-version>
<debian-package-name>${project.build.directory}/${project.artifactId}-${debian-package-version}_all.deb</debian-package-name>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m4.3</version>
<configuration>
<flowInitContext>
<!-- masterBranchName>odn/master</masterBranchName>
<developBranchName>odn/develop</developBranchName>
<featureBranchPrefix>feature-</featureBranchPrefix -->
<releaseBranchPrefix>release/UV_v</releaseBranchPrefix>
<!-- hotfixBranchPrefix>hotfix-</hotfixBranchPrefix -->
<versionTagPrefix>UV_v</versionTagPrefix>
</flowInitContext>
<allowSnapshots>true</allowSnapshots>
<noDeploy>true</noDeploy>
<!-- see goals wiki page for configuration options -->
</configuration>
</plugin>
</plugins>
</build>
</project>