I use
MAVEN SNAPSHOTS for my dependencies - which typically have a naming schema like
"dependency-2.1.1.01-SNAPSHOT.jar"
However - every time I update my Maven
Java project in my Eclipse Luna (with internal MAVEN 3.2.1) - it gives me the Ear Module Assembly as:
Source
/home/user/.m2/repository/com/dependency-2.1.1.01-SNAPSHOT.jar
Deploy Path
dependency-2.1.1.01-20150403.221111-1.jar
It seems to constantly append the Timestamp to the Deploy Path - when I want it to stay the same naming of "-SNAPSHOT".
Is there a MAVEN configuration in Eclipse (or outside) that I'm missing somewhere?
All I want is the following:
Source
/home/user/.m2/repository/com/dependency-2.1.1.01-SNAPSHOT.jar
Deploy Path
dependency-2.1.1.01-SNAPSHOT.jar
This is causing issues on my local
JBoss test server - as it expects the naming of the JARs to be exactly using the "-SNAPSHOT.jar" naming schema when its Published.