-
Notifications
You must be signed in to change notification settings - Fork 0
/
tile.xml
68 lines (62 loc) · 2.15 KB
/
tile.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
<?xml version="1.0" encoding="UTF-8"?>
<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">
<!--
<scm>
<connection>scm:git:[email protected]:repaint-io/${artifactId}</connection>
<developerConnection>scm:git:[email protected]:repaint-io/${artifactId}</developerConnection>
<url>https://github.com/repaint-io/${artifactId}</url>
<tag>HEAD</tag>
</scm>
-->
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.2</version>
<!-- Invocation is defined by the release plugin goal set hence no executions -->
<configuration>
<rules>
<requireMavenVersion>
<version>[3.2.2,)</version>
</requireMavenVersion>
<requireReleaseDeps>
<!-- Don't allow releases with snapshop deps or parents -->
<message>No Snapshots Allowed!</message>
<failWhenParentIsSnapshot>true</failWhenParentIsSnapshot>
<searchTransitive>true</searchTransitive>
</requireReleaseDeps>
<bannedDependencies>
<excludes>
<exclude>commons-logging</exclude>
<exclude>commons-logging-api</exclude>
</excludes>
</bannedDependencies>
</rules>
<fail>true</fail>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<arguments>-Drepaint.release=release</arguments>
<preparationGoals>clean enforcer:enforce verify</preparationGoals>
<goals>enforcer:enforce deploy</goals>
<tagBase>release/${project.groupId}/</tagBase>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>