Maven profiles

  • Home
  • /
  • Maven profiles
  • 22
    May

    Maven profiles – to manage dependencies

    Creating a pom.xml for all your needs sometimes causes un-necessary dependencies downloaded to your project. Following pom.xml defines Maven profiles, which when invoked, will download only required dependencies (based...

    Read More
  • 25
    Apr

    profiles in pom.xml

    Inside pom.xml we can create profiles as follow: linux64 true linux gtk x86_64 win64 env win64 win32 win32 x86_64 ….. org.eclipse.tycho target-platform-configuration ${tycho.version} ${build_os} ${build_ws} ${build_arch} In this example...

    Read More