-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
117 lines (111 loc) · 3.57 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.hoteia.qalingo</groupId>
<artifactId>qalingo-quick-start-linux-env</artifactId>
<version>0.9.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>qalingo-quick-start-linux-env</name>
<description>{Q} Commerce Solution Project</description>
<url>http://www.qalingo.com</url>
<inceptionYear>2012-2016</inceptionYear>
<organization>
<name>Hoteia</name>
<url>http://www.hoteia.com</url>
</organization>
<properties>
<root.basedir>${project.basedir}</root.basedir>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
<dependencies>
<!-- This dependency to fix the issue with jenkisn/maven-release/version not changed in the pom.xml-->
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<configuration>
<basedir>${basedir}</basedir>
<header>${root.basedir}/misc-license/license-qalingo.txt</header>
<quiet>false</quiet>
<failIfMissing>true</failIfMissing>
<aggregate>false</aggregate>
<includes>
<include>src/**</include>
<include>**/test/**</include>
</includes>
<excludes>
<exclude>target/**</exclude>
<exclude>.clover/**</exclude>
<exclude>**/library/**</exclude>
<exclude>**/bootstrap/**</exclude>
<exclude>**/VAADIN/**</exclude>
</excludes>
<useDefaultExcludes>true</useDefaultExcludes>
<mapping>
<jwc>XML_STYLE</jwc>
<application>XML_STYLE</application>
<myFileExtension>JAVADOC_STYLE</myFileExtension>
</mapping>
<useDefaultMapping>true</useDefaultMapping>
<strictCheck>true</strictCheck>
<properties>
<year>${project.inceptionYear}</year>
<email>[email protected]</email>
<license.version>${releaseVersion}</license.version>
</properties>
<encoding>UTF-8</encoding>
</configuration>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
</plugin>
<!--
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.3.2</version>
</plugin>
-->
</plugins>
</pluginManagement>
</build>
<scm>
<connection>scm:git:[email protected]:qalingo/qalingo-quick-start-linux-env.git</connection>
<developerConnection>scm:git:[email protected]:qalingo/qalingo-quick-start-linux-env.git</developerConnection>
<url>scm:git:[email protected]:qalingo/qalingo-quick-start-linux-env.git</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>releases</id>
<name>Hoteia Releases</name>
<url>http://nexus.hoteia.com/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Hoteia Snapshots</name>
<url>http://nexus.hoteia.com/content/repositories/snapshots</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
</project>