-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
145 lines (129 loc) · 4.49 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2020 RedEngine Ltd, http://www.redengine.co.nz. All rights reserved. -->
<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">
<parent>
<groupId>net.stickycode.stable.parent</groupId>
<artifactId>sticky-parent</artifactId>
<version>1.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>net.stickycode.plugins</groupId>
<artifactId>kuuty-maven-plugin</artifactId>
<version>1.11-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>kuuty-maven-plugin</name>
<description>A plugin for generating and validating Kubernetes resources</description>
<inceptionYear>2020</inceptionYear>
<url>http://www.StickyCode.net/plugins/sticky-bounds-plugin</url>
<scm>
<connection>${git.url}</connection>
<developerConnection>${git.url}</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<prerequisites>
<maven>3.6.3</maven>
</prerequisites>
<dependencies>
<dependency>
<groupId>net.stickycode.composite</groupId>
<artifactId>sticky-composite-unittest</artifactId>
<version>[3.7,4)</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.stickycode</groupId>
<artifactId>sticky-exception</artifactId>
<version>[3.2,4)</version>
</dependency>
<dependency>
<groupId>net.stickycode.kuuty</groupId>
<artifactId>kuuty-model-v18</artifactId>
<version>[1.3,2)</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>[3.6.0]</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>[3.6.3]</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>[3.6.3]</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.repaint.maven</groupId>
<artifactId>tiles-maven-plugin</artifactId>
<version>2.34</version>
<configuration>
<tiles>
<tile>net.stickycode.tile:sticky-tile-release:[2,3)</tile>
</tiles>
</configuration>
</plugin>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.9.0</version>
</plugin>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<projectsDirectory>src/it</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<pomIncludes>
<pomInclude>*/pom.xml</pomInclude>
</pomIncludes>
<postBuildHookScript>verify.bsh</postBuildHookScript>
<showVersion>true</showVersion>
<showErrors>true</showErrors>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>install</goal>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>purge-local-dependencies</id>
<phase>post-integration-test</phase>
<goals>
<goal>purge-local-repository</goal>
</goals>
<configuration>
<verbose>true</verbose>
<!-- This must operate on the whole artifact as the metadata needs to be deleted. Leaving the metadata would mean Maven thinks there are SNAPSHOT versions that can never be resolved. -->
<manualIncludes>
<manualInclude>${project.groupId}:${project.artifactId}</manualInclude>
</manualIncludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>