Skip to content

Commit

Permalink
Merge pull request #9293 from KomachiSion/develop-issue#9091
Browse files Browse the repository at this point in the history
[ISSUE#9091] build pure nacos-client when release.
  • Loading branch information
MajorHe1 authored Oct 11, 2022
2 parents 83e3e50 + a1b7054 commit 1a1ef02
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,21 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>pure-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>pure</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down Expand Up @@ -345,6 +360,21 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>pure-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>pure</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
</issueManagement>

<properties>
<revision>2.1.1</revision>
<revision>2.1.2</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Compiler settings properties -->
Expand Down

0 comments on commit 1a1ef02

Please sign in to comment.