Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Commit

Permalink
feat : Add Fabric8 Maven Plugin deprecation log message before & afte…
Browse files Browse the repository at this point in the history
…r goal executions

Related to eclipse-jkube/jkube#1426

Add warning log message to print deprecation message and instruct users
to migrate to Eclipse JKube

Signed-off-by: Rohan Kumar <[email protected]>
(cherry picked from commit 77337f5)
  • Loading branch information
rohanKanojia authored and manusa committed Jul 21, 2022
1 parent 349d4b2 commit d912f04
Show file tree
Hide file tree
Showing 7 changed files with 119 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/**
* Copyright 2016 Red Hat, Inc.
*
* Red Hat licenses this file to you under the Apache License, version
* 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package io.fabric8.maven.core.util;

import io.fabric8.maven.docker.util.Logger;

public class Fabric8MavenPluginDeprecationUtil {
private Fabric8MavenPluginDeprecationUtil() { }

public static void logFabric8MavenPluginDeprecation(Logger logger, boolean logDeprecationWarning) {
if (logDeprecationWarning) {
logger.warn("Fabric8 Maven Plugin has been deprecated and is no longer supported.\n\n" +
"Please consider migrating to Eclipse JKube (https://github.com/eclipse/jkube) plugins:\n" +
" - Kubernetes Maven Plugin (https://www.eclipse.org/jkube/docs/kubernetes-maven-plugin)\n" +
" - OpenShift Maven Plugin (https://www.eclipse.org/jkube/docs/openshift-maven-plugin/)\n" +
"You can read the Migration Guide for more details (https://www.eclipse.org/jkube/docs/migration-guide/)\n\n" +
"Note: To disable this warning use `-Dfabric8.logDeprecationWarning=false`.");
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/**
* Copyright 2016 Red Hat, Inc.
*
* Red Hat licenses this file to you under the Apache License, version
* 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package io.fabric8.maven.core.util;

import io.fabric8.maven.docker.util.Logger;
import mockit.Mocked;
import mockit.Verifications;
import org.junit.Test;

public class Fabric8MavenPluginDeprecationUtilTest {
@Mocked
private Logger logger;

@Test
public void logFabric8MavenPluginDeprecation_whenLogDeprecationTrue_shouldLogDeprecationWarning() {
// Given + When
Fabric8MavenPluginDeprecationUtil.logFabric8MavenPluginDeprecation(logger, true);

// Then
new Verifications() {{
logger.warn("Fabric8 Maven Plugin has been deprecated and is no longer supported.\n\n" +
"Please consider migrating to Eclipse JKube (https://github.com/eclipse/jkube) plugins:\n" +
" - Kubernetes Maven Plugin (https://www.eclipse.org/jkube/docs/kubernetes-maven-plugin)\n" +
" - OpenShift Maven Plugin (https://www.eclipse.org/jkube/docs/openshift-maven-plugin/)\n" +
"You can read the Migration Guide for more details (https://www.eclipse.org/jkube/docs/migration-guide/)\n\n" +
"Note: To disable this warning use `-Dfabric8.logDeprecationWarning=false`.");
times = 1;
}};
}

@Test
public void logFabric8MavenPluginDeprecation_whenLogDeprecationFalse_shouldNotLogDeprecationWarning() {
// Given + When
Fabric8MavenPluginDeprecationUtil.logFabric8MavenPluginDeprecation(logger, false);

// Then
new Verifications() {{
logger.warn(anyString);
times = 0;
}};
}
}
5 changes: 5 additions & 0 deletions doc/src/main/asciidoc/inc/_introduction.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
[[introduction]]
= Introduction

IMPORTANT: *Fabric8 Maven Plugin is deprecated and is no longer supported.
Please consider migrating to https://github.com/eclipse/jkube[Eclipse JKube] plugins:
https://www.eclipse.org/jkube/docs/kubernetes-maven-plugin[Kubernetes Maven Plugin] or https://www.eclipse.org/jkube/docs/openshift-maven-plugin[OpenShift Maven Plugin]
. You can read the https://www.eclipse.org/jkube/docs/migration-guide/[Migration Guide] for more details.*

The *fabric8-maven-plugin* (f8-m-p) brings your Java applications on to http://kubernetes.io/[Kubernetes] and https://www.openshift.com/[OpenShift].
It provides a tight integration into http://maven.apache.org[Maven] and benefits from the build configuration already provided.
This plugin focus on two tasks: _Building Docker images_ and _creating Kubernetes and OpenShift resource descriptors_.
Expand Down
6 changes: 6 additions & 0 deletions doc/src/main/asciidoc/inc/goals/build/_fabric8-build.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,12 @@ a| The build mode which can be
| *verbose*
| Boolean attribute for switching on verbose output like the build steps when doing a Docker build. Default is `false`
| `docker.verbose`

| *logDeprecationWarning*
| Whether to log Fabric8 Maven Plugin deprecation warning or not.

Defaults to `true`.
| `fabric8.logDeprecationWarning`
|===

=== Access Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
import org.apache.maven.settings.Settings;
import org.apache.maven.shared.utils.logging.MessageUtils;

import static io.fabric8.maven.core.util.Fabric8MavenPluginDeprecationUtil.logFabric8MavenPluginDeprecation;

public abstract class AbstractFabric8Mojo extends AbstractMojo {

@Parameter(defaultValue = "${project}", readonly = true)
Expand All @@ -53,6 +55,9 @@ public abstract class AbstractFabric8Mojo extends AbstractMojo {
@Parameter(defaultValue = "${settings}", readonly = true)
protected Settings settings;

@Parameter(property = "fabric8.logDeprecationWarning", defaultValue = "true")
protected boolean logDeprecationWarning;

@Parameter
protected ClusterConfiguration access;

Expand All @@ -64,7 +69,9 @@ public void execute() throws MojoExecutionException, MojoFailureException {
return;
}
log = createLogger(" ");
logFabric8MavenPluginDeprecation(log, logDeprecationWarning);
executeInternal();
logFabric8MavenPluginDeprecation(log, logDeprecationWarning);
}

public abstract void executeInternal() throws MojoExecutionException, MojoFailureException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
import java.util.Objects;
import java.util.Properties;

import static io.fabric8.maven.core.util.Fabric8MavenPluginDeprecationUtil.logFabric8MavenPluginDeprecation;

/**
* Builds the docker images configured for this project via a Docker or S2I binary build.
*
Expand Down Expand Up @@ -189,6 +191,9 @@ public class BuildMojo extends io.fabric8.maven.docker.BuildMojo {
@Parameter(property = "docker.skip.build", defaultValue = "false")
protected boolean skipBuild;

@Parameter(property = "fabric8.logDeprecationWarning", defaultValue = "true")
protected boolean logDeprecationWarning;

@Component
private MavenProjectHelper projectHelper;

Expand Down Expand Up @@ -240,6 +245,7 @@ protected void executeInternal(ServiceHub hub) throws MojoExecutionException {
}

try {
logFabric8MavenPluginDeprecation(log, logDeprecationWarning);
if (shouldSkipBecauseOfPomPackaging()) {
getLog().info("Disabling docker build for pom packaging");
return;
Expand Down Expand Up @@ -271,6 +277,7 @@ protected void executeInternal(ServiceHub hub) throws MojoExecutionException {
super.executeInternal(hub);
}
fabric8ServiceHub.getBuildService().postProcess(getBuildServiceConfig());
logFabric8MavenPluginDeprecation(log, logDeprecationWarning);
} catch(IOException e) {
throw new MojoExecutionException(e.getMessage());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
import java.util.List;

import static io.fabric8.maven.core.service.kubernetes.jib.JibServiceUtil.jibPush;
import static io.fabric8.maven.core.util.Fabric8MavenPluginDeprecationUtil.logFabric8MavenPluginDeprecation;

/**
* Uploads the built Docker images to a Docker registry
Expand Down Expand Up @@ -122,6 +123,9 @@ public class PushMojo extends AbstractDockerMojo {
@Parameter(property = "docker.skip.tag", defaultValue = "false")
private boolean skipTag;

@Parameter(property = "fabric8.logDeprecationWarning", defaultValue = "true")
protected boolean logDeprecationWarning;

@Override
protected String getLogPrefix() {
return "F8> ";
Expand Down Expand Up @@ -150,7 +154,9 @@ public void execute() throws MojoExecutionException, MojoFailureException {
return;
}

logFabric8MavenPluginDeprecation(log, logDeprecationWarning);
super.execute();
logFabric8MavenPluginDeprecation(log, logDeprecationWarning);
}

/**
Expand Down

0 comments on commit d912f04

Please sign in to comment.