File tree 2 files changed +20
-0
lines changed
spring-javaformat-vscode/spring-javaformat-vscode-extension
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 29
29
echo " Staging ${stageVersion} (next version will be ${nextVersion} )"
30
30
run_maven versions:set -DnewVersion=${stageVersion} -DgenerateBackupPoms=false
31
31
run_maven org.eclipse.tycho:tycho-versions-plugin:update-eclipse-metadata
32
+ run_maven --projects io.spring.javaformat:spring-javaformat-vscode-extension antrun:run@update-version
32
33
33
34
git config user.name " Spring Builds" > /dev/null
34
35
git config user.email
" [email protected] " > /dev/null
Original file line number Diff line number Diff line change 117
117
</execution >
118
118
</executions >
119
119
</plugin >
120
+ <plugin >
121
+ <groupId >org.apache.maven.plugins</groupId >
122
+ <artifactId >maven-antrun-plugin</artifactId >
123
+ <executions >
124
+ <execution >
125
+ <id >update-version</id >
126
+ <goals >
127
+ <goal >run</goal >
128
+ </goals >
129
+ <configuration >
130
+ <target >
131
+ <replaceregexp file =" package.json" flags =" gm" byline =" true"
132
+ match=" (.+version.+:).*"
133
+ replace=" \1 " ${project.version}" ," />
134
+ </target >
135
+ </configuration >
136
+ </execution >
137
+ </executions >
138
+ </plugin >
120
139
</plugins >
121
140
</build >
122
141
<dependencies >
You can’t perform that action at this time.
0 commit comments