From 25d14b9f04e95c711df5e8d0e74524e3efced542 Mon Sep 17 00:00:00 2001 From: sampadawagde Date: Sun, 28 Jun 2020 16:17:23 +0530 Subject: [PATCH] JAVA-49: Renamed profiles to maven-profiles and moved to maven-modules --- maven-modules/maven-profiles/README.md | 7 ++ maven-modules/maven-profiles/pom.xml | 94 ++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 maven-modules/maven-profiles/README.md create mode 100644 maven-modules/maven-profiles/pom.xml diff --git a/maven-modules/maven-profiles/README.md b/maven-modules/maven-profiles/README.md new file mode 100644 index 0000000000..cfbe5c397f --- /dev/null +++ b/maven-modules/maven-profiles/README.md @@ -0,0 +1,7 @@ +## Maven Profiles + +This module contains articles about Maven profiles. + +### Relevant Articles + +- [Guide to Maven Profiles](https://www.baeldung.com/maven-profiles) diff --git a/maven-modules/maven-profiles/pom.xml b/maven-modules/maven-profiles/pom.xml new file mode 100644 index 0000000000..4937bc7c5d --- /dev/null +++ b/maven-modules/maven-profiles/pom.xml @@ -0,0 +1,94 @@ + + + 4.0.0 + com.baeldung + maven-profiles + 0.0.1-SNAPSHOT + maven-profiles + + + + no-tests + + true + + + + integration-tests + + true + + + + mutation-tests + + + active-on-jdk-11 + + 11 + + + + active-on-windows-10 + + + windows 10 + Windows + amd64 + 10.0 + + + + + active-on-property-environment + + + environment + !test + + + + + active-on-missing-file + + + target/testreport.html + + + + + active-on-present-file + + + target/artifact.jar + + + + + + + + + org.apache.maven.plugins + maven-help-plugin + ${help.plugin.version} + + + show-profiles + compile + + active-profiles + + + + + + + + + 3.2.0 + + + \ No newline at end of file