-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
198 lines (188 loc) · 8.79 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-project</artifactId>
<version>4.0.11</version>
</parent>
<properties>
<project.build.itSourceDirectory>${project.basedir}/src/test/resources/projects</project.build.itSourceDirectory>
<project.build.itDirectory>${project.build.directory}/it</project.build.itDirectory>
<project.build.itOutputDirectory>${project.build.itDirectory}/projects</project.build.itOutputDirectory>
</properties>
<groupId>io.dropwizard.archetypes</groupId>
<artifactId>dropwizard-archetypes</artifactId>
<packaging>pom</packaging>
<name>Dropwizard Archetypes</name>
<description>
A collection of Maven Archetypes for bootstrapping development of a new Dropwizard Service.
</description>
<scm>
<connection>scm:git:https://github.com/dropwizard/dropwizard-archetypes</connection>
<developerConnection>scm:git:ssh://[email protected]/dropwizard/dropwizard-archetypes.git</developerConnection>
<url>https://github.com/dropwizard/dropwizard-archetypes</url>
</scm>
<modules>
<module>java-simple</module>
</modules>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>${maven-archetype-plugin.version}</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-archetype-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<escapeString>\</escapeString>
</configuration>
</plugin>
<!-- Tests an Archetype
- 1) cleans any projects generated by previous integration test runs
- 2) generates a new project from the archetype
- 3) executes the "verify" goal on the generated project
- If any of the above executions fail, the build fails -->
<plugin>
<!-- clean any existing integration tests -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>prepare-integration-test</id>
<goals>
<goal>clean</goal>
</goals>
<phase>pre-integration-test</phase>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.itOutputDirectory}</directory>
<includes>
<include>**/*</include>
</includes>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<configuration>
<!-- custom settings.xml to have invoker use our local M2 repo for artifacts -->
<settingsFile>${project.parent.basedir}/src/test/resources/settings.xml</settingsFile>
<!-- the temporary M2 repo that will be used by our generated projects -->
<localRepositoryPath>${project.build.itDirectory}/repo</localRepositoryPath>
<!-- display invoker output as part of our build -->
<streamLogs>true</streamLogs>
</configuration>
<!-- generate a project from the archetype -->
<executions>
<execution>
<id>generate-project</id>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
<configuration>
<goals>
<goal>org.apache.maven.plugins:maven-archetype-plugin:generate</goal>
</goals>
<pomIncludes>
<pomInclude>*</pomInclude>
</pomIncludes>
<cloneProjectsTo>${project.build.itOutputDirectory}</cloneProjectsTo>
<projectsDirectory>${project.build.itSourceDirectory}</projectsDirectory>
<properties>
<archetypeArtifactId>${project.artifactId}</archetypeArtifactId>
<archetypeGroupId>${project.groupId}</archetypeGroupId>
<archetypeVersion>${project.version}</archetypeVersion>
<archetypeRepository>local</archetypeRepository>
<interactiveMode>false</interactiveMode>
</properties>
</configuration>
</execution>
<!-- verify generated project -->
<execution>
<id>verify</id>
<goals>
<goal>run</goal>
</goals>
<configuration>
<goals>
<goal>verify</goal>
</goals>
<pomIncludes>
<pomInclude>*/*/pom.xml</pomInclude>
</pomIncludes>
<projectsDirectory>${project.build.itOutputDirectory}</projectsDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>package-tools</id>
<goals>
<goal>resources</goal>
</goals>
<phase>package</phase>
<inherited>false</inherited>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>dropwizard-create</include>
</includes>
</resource>
</resources>
</build>
<profiles>
<profile>
<id>dev</id>
<properties>
<archetype.test.skip>true</archetype.test.skip>
<invoker.skip>true</invoker.skip>
</properties>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>2.1.0</version>
<configuration>
<connectionType>developerConnection</connectionType>
<tag>v${project.version}</tag>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>