Skip to content

Commit 0cace4d

Browse files
committed
Corrected create-home-zip warning locations
1 parent 621f311 commit 0cace4d

File tree

5 files changed

+33
-32
lines changed

5 files changed

+33
-32
lines changed

kotlin-insight-client/kotlin-insight-client-test-applink/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,22 @@
204204
<verbose>false</verbose>
205205
</configuration>
206206
</plugin>
207+
208+
<!-- Show reminder for license removal on create-home-zip -->
209+
<plugin>
210+
<groupId>org.apache.maven.plugins</groupId>
211+
<artifactId>maven-antrun-plugin</artifactId>
212+
<executions>
213+
<execution>
214+
<id>show-home-warning</id>
215+
<configuration>
216+
<target>
217+
<input message="ATTENTION!${line.separator}Remove the license information which is stored in the created zip in 'confluence.cfg.xml'.${line.separator}Set entry 'atlassian.license.message' to 'TBD'.${line.separator}Press enter to continue..."/>
218+
</target>
219+
</configuration>
220+
</execution>
221+
</executions>
222+
</plugin>
207223
</plugins>
208224
</build>
209225

kotlin-insight-client/pom.xml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,6 @@
5454
</execution>
5555
</executions>
5656
</plugin>
57-
<!-- Show reminder for license removal on create-home-zip -->
58-
<plugin>
59-
<groupId>org.apache.maven.plugins</groupId>
60-
<artifactId>maven-antrun-plugin</artifactId>
61-
<executions>
62-
<execution>
63-
<id>show-home-warning</id>
64-
<configuration>
65-
<target>
66-
<input message="ATTENTION!${line.separator}Remove the license information which is stored in the database. Therefore stop Jira, connect to the database (e.g. with IntelliJ) and finally remove the entries from the license table (e.g. PRODUCTLICENSE).${line.separator}Press enter to continue..."/>
67-
</target>
68-
</configuration>
69-
</execution>
70-
</executions>
71-
</plugin>
7257
</plugins>
7358
</build>
7459

kotlin-jira-client/pom.xml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -94,22 +94,6 @@
9494
</execution>
9595
</executions>
9696
</plugin>
97-
98-
<!-- Show reminder for license removal on create-home-zip -->
99-
<plugin>
100-
<groupId>org.apache.maven.plugins</groupId>
101-
<artifactId>maven-antrun-plugin</artifactId>
102-
<executions>
103-
<execution>
104-
<id>show-home-warning</id>
105-
<configuration>
106-
<target>
107-
<input message="ATTENTION!${line.separator}Remove the license information which is stored in the database. Therefore stop Jira, connect to the database (e.g. with IntelliJ) and finally remove the entries from the license table (e.g. PRODUCTLICENSE).${line.separator}Press enter to continue..."/>
108-
</target>
109-
</configuration>
110-
</execution>
111-
</executions>
112-
</plugin>
11397
</plugins>
11498
</build>
11599

pom.xml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@
109109
<plugin>
110110
<groupId>org.apache.maven.plugins</groupId>
111111
<artifactId>maven-antrun-plugin</artifactId>
112-
<version>1.8</version>
113112
<executions>
114113
<execution>
115114
<phase>validate</phase>
@@ -226,6 +225,22 @@
226225
<skip>true</skip>
227226
</configuration>
228227
</plugin>
228+
229+
<!-- Show reminder for license removal on create-home-zip -->
230+
<plugin>
231+
<groupId>org.apache.maven.plugins</groupId>
232+
<artifactId>maven-antrun-plugin</artifactId>
233+
<executions>
234+
<execution>
235+
<id>show-home-warning</id>
236+
<configuration>
237+
<target>
238+
<input message="ATTENTION!${line.separator}Remove the license information which is stored in the database. Therefore stop Jira, connect to the database (e.g. with IntelliJ) and finally remove the entries from the license table (e.g. PRODUCTLICENSE).${line.separator}Press enter to continue..."/>
239+
</target>
240+
</configuration>
241+
</execution>
242+
</executions>
243+
</plugin>
229244
</plugins>
230245

231246
<pluginManagement>

runConfigurations/kotlin-atlassian-client_jira-create-home-zip.run.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<list>
1313
<option value="antrun:run@show-home-warning" />
1414
<option value="jira:create-home-zip" />
15+
<option value="-N" />
1516
</list>
1617
</option>
1718
<option name="pomFileName" />

0 commit comments

Comments
 (0)