File tree 1 file changed +17
-10
lines changed
1 file changed +17
-10
lines changed Original file line number Diff line number Diff line change 137
137
<groupId >org.apache.maven.plugins</groupId >
138
138
<artifactId >maven-war-plugin</artifactId >
139
139
<version >3.2.3</version >
140
- <executions >
141
- <execution >
142
- <id >make-a-war</id >
143
- <phase >compile</phase >
144
- <goals >
145
- <goal >war</goal >
146
- </goals >
147
- </execution >
148
- </executions >
149
140
<configuration >
150
141
<warName >${CELLBASE.WAR.NAME} </warName >
151
142
<webResources >
157
148
</webResources >
158
149
</configuration >
159
150
</plugin >
151
+ <plugin >
152
+ <groupId >org.apache.maven.plugins</groupId >
153
+ <artifactId >maven-jar-plugin</artifactId >
154
+ <executions >
155
+ <execution >
156
+ <id >make-a-jar</id >
157
+ <phase >compile</phase >
158
+ <goals >
159
+ <goal >jar</goal >
160
+ </goals >
161
+ </execution >
162
+ </executions >
163
+ </plugin >
164
+
165
+ <!-- Plugin to install the JAR -->
160
166
<plugin >
161
167
<groupId >org.apache.maven.plugins</groupId >
162
168
<artifactId >maven-install-plugin</artifactId >
163
- <!-- <version>3.1.1</version> -- >
169
+ <version >3.1.1</version >
164
170
<executions >
165
171
<execution >
172
+ <id >install-jar</id >
166
173
<phase >install</phase >
167
174
<goals >
168
175
<goal >install-file</goal >
You can’t perform that action at this time.
0 commit comments