File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
src/main/resources/META-INF/resources Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 128
128
129
129
<build >
130
130
<plugins >
131
+ <plugin >
132
+ <groupId >org.apache.maven.plugins</groupId >
133
+ <artifactId >maven-antrun-plugin</artifactId >
134
+ <version >3.1.0</version >
135
+ <executions >
136
+ <execution >
137
+ <phase >process-resources</phase >
138
+ <goals >
139
+ <goal >run</goal >
140
+ </goals >
141
+ <configuration >
142
+ <target >
143
+ <replace file =" ${project.build.directory}/classes/META-INF/resources/index.html" >
144
+ <replacetoken >@@closure-compiler.version@@</replacetoken >
145
+ <replacevalue >${closure-compiler.version} </replacevalue >
146
+ </replace >
147
+ </target >
148
+ </configuration >
149
+ </execution >
150
+ </executions >
151
+ </plugin >
131
152
<plugin >
132
153
<groupId >${quarkus.platform.group-id} </groupId >
133
154
<artifactId >quarkus-maven-plugin</artifactId >
Original file line number Diff line number Diff line change 11
11
< header class ="bg-blue-600 text-white p-4 ">
12
12
< div class ="container mx-auto flex justify-between items-center ">
13
13
< div class ="nav-links flex items-center ">
14
- < span class ="left text-xl font-semibold "> JS Compressor </ span >
14
+ < span class ="left text-xl font-semibold "> Closure Compiler version @@closure-compiler.version@@ </ span >
15
15
</ div >
16
16
17
17
< div class ="nav-links hidden md:flex items-center space-x-6 ">
You can’t perform that action at this time.
0 commit comments