File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/main/java/org/eclipse/microprofile/starter/addon/microprofile/servers Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,11 @@ public void createFiles(JessieModel model) {
195195 variables .put ("jar_file" , defineJarFileName (supportedServer , artifactId ));
196196 variables .put ("jar_parameters" , defineJarParameters (supportedServer ));
197197 variables .put ("test_url" , defineTestURL (supportedServer , artifactId ));
198- variables .put ("secondary_url" , defineSecondaryURL (supportedServer , artifactId ));
198+ if (supportedServer != SupportedServer .LIBERTY ) {
199+ variables .put ("secondary_url" , defineSecondaryURL (supportedServer , artifactId ));
200+ } else {
201+ variables .put ("secondary_url" , defineSecondaryURL (supportedServer , "" ));
202+ }
199203 variables .put ("artifact_id" , artifactId );
200204
201205 String rootJava = getJavaApplicationRootPackage (model );
You can’t perform that action at this time.
0 commit comments