Skip to content

Commit 1929cb2

Browse files
committed
flatten meta information
1 parent 6bfa664 commit 1929cb2

File tree

5 files changed

+65
-0
lines changed

5 files changed

+65
-0
lines changed

kotlin-atlassian-client-core-common/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,16 @@
2828
<groupId>org.codehaus.mojo</groupId>
2929
<artifactId>flatten-maven-plugin</artifactId>
3030
<version>${maven.flatten.version}</version>
31+
<configuration>
32+
<pomElements>
33+
<scm/>
34+
<url/>
35+
<organization/>
36+
<name/>
37+
<description/>
38+
<developers/>
39+
</pomElements>
40+
</configuration>
3141
<executions>
3242
<execution>
3343
<goals>

kotlin-http-client/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,16 @@
2626
<groupId>org.codehaus.mojo</groupId>
2727
<artifactId>flatten-maven-plugin</artifactId>
2828
<version>${maven.flatten.version}</version>
29+
<configuration>
30+
<pomElements>
31+
<scm/>
32+
<url/>
33+
<organization/>
34+
<name/>
35+
<description/>
36+
<developers/>
37+
</pomElements>
38+
</configuration>
2939
<executions>
3040
<execution>
3141
<goals>

kotlin-insight-client/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,16 @@
9292
<groupId>org.codehaus.mojo</groupId>
9393
<artifactId>flatten-maven-plugin</artifactId>
9494
<version>${maven.flatten.version}</version>
95+
<configuration>
96+
<pomElements>
97+
<scm/>
98+
<url/>
99+
<organization/>
100+
<name/>
101+
<description/>
102+
<developers/>
103+
</pomElements>
104+
</configuration>
95105
<executions>
96106
<execution>
97107
<goals>

kotlin-jira-client/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,16 @@
9494
<groupId>org.codehaus.mojo</groupId>
9595
<artifactId>flatten-maven-plugin</artifactId>
9696
<version>${maven.flatten.version}</version>
97+
<configuration>
98+
<pomElements>
99+
<scm/>
100+
<url/>
101+
<organization/>
102+
<name/>
103+
<description/>
104+
<developers/>
105+
</pomElements>
106+
</configuration>
97107
<executions>
98108
<execution>
99109
<goals>

pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,31 @@
135135
</executions>
136136
</plugin>
137137

138+
<!-- flatten to produce explicit version numbers that are expected by central for publishing -->
139+
<plugin>
140+
<groupId>org.codehaus.mojo</groupId>
141+
<artifactId>flatten-maven-plugin</artifactId>
142+
<version>${maven.flatten.version}</version>
143+
<configuration>
144+
<pomElements>
145+
<scm/>
146+
<url/>
147+
<organization/>
148+
<name/>
149+
<description/>
150+
<developers/>
151+
</pomElements>
152+
</configuration>
153+
<executions>
154+
<execution>
155+
<goals>
156+
<goal>flatten</goal>
157+
</goals>
158+
<phase>process-resources</phase>
159+
</execution>
160+
</executions>
161+
</plugin>
162+
138163
<!-- Clean Maven directories that get corrupted when rebuilding the project with IntelliJ
139164
or on successive Maven builds -->
140165
<plugin>

0 commit comments

Comments
 (0)