A maven plugin to add dynamically a repository at build time

2018-04-09 Thread Nicolas Brasey
Hi, In my continuous integration solution, I need to have a maven repository which is calculated based on the git branch name. For example, I have a naming convention which is used to calculate the maven repo URL, something similar to this: Branch name -> Git Repo URL: ---

How to disable jsf in Eclipse

2018-04-09 Thread Karen Goh
Dear expert, I am running a maven war plug-in jee project using Tomcat and TomEE I think, with Hibernate and jsp. Here's my pom.xml : http://maven.apache.org/POM/4.0.0; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0

RE: A maven plugin to add dynamically a repository at build time

2018-04-09 Thread Golan, Yaron
Hi, Here is my proposal... Inside your main/parent pom.xml, set the following: ... foo boo ${repo.name} ${repo.url} ...

Re: A maven plugin to add dynamically a repository at build time

2018-04-09 Thread Nicolas Brasey
Hi Yolan, Thanks for your input. Yes, what you proposed is what I use at the moment as a workaround. But I wanted to hide the branch selection logic from the build runner. I suppose there is no real solution to hook code in maven before even the dependencies resolution? Is there another API

RE: How to disable jsf in Eclipse

2018-04-09 Thread Diego Lin
please try this way: Properties of your project -> Project Facets -> JavaServer Faces. Uncheck it. Thanks, Diego -Original Message- From: Karen Goh [mailto:karenwo...@yahoo.com.INVALID] Sent: Tuesday, April 10, 2018 1:10 PM To: users@maven.apache.org Subject: How to disable jsf in