Skip to content

Commit ca2355a

Browse files
committed
revert: remove flatten maven plugin (#40)
1 parent dfe64cc commit ca2355a

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

pom.xml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
<properties>
4040
<beaver-iot.version>1.2.0</beaver-iot.version>
41-
<revision>${beaver-iot.version}</revision>
41+
<revision>${beaver-iot.version}-SNAPSHOT</revision>
4242
<maven.compiler.source>17</maven.compiler.source>
4343
<maven.compiler.target>17</maven.compiler.target>
4444
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -59,6 +59,31 @@
5959

6060
<build>
6161
<plugins>
62+
<plugin>
63+
<groupId>org.codehaus.mojo</groupId>
64+
<artifactId>flatten-maven-plugin</artifactId>
65+
<version>1.2.7</version>
66+
<configuration>
67+
<flattenMode>resolveCiFriendliesOnly</flattenMode>
68+
<updatePomFile>true</updatePomFile>
69+
</configuration>
70+
<executions>
71+
<execution>
72+
<id>flatten</id>
73+
<phase>process-resources</phase>
74+
<goals>
75+
<goal>flatten</goal>
76+
</goals>
77+
</execution>
78+
<execution>
79+
<id>flatten-clean</id>
80+
<phase>clean</phase>
81+
<goals>
82+
<goal>clean</goal>
83+
</goals>
84+
</execution>
85+
</executions>
86+
</plugin>
6287
<plugin>
6388
<groupId>org.apache.maven.plugins</groupId>
6489
<artifactId>maven-source-plugin</artifactId>

0 commit comments

Comments
 (0)