Member since
01-25-2018
3
Posts
0
Kudos Received
0
Solutions
04-04-2018
11:46 AM
Can anyone tell me how can we add the version numbers to our custom processors. I am trying to pass the version in my pom, like below <version>2.0.0-snapshot</version> <packaging>pom</packaging> <artifactId>project-artifactID</artifactId> <parent> <groupId>groupName</groupId> <artifactId>parent-project-name</artifactId> <version>1.0.0</version> </parent> Basically, I'm expecting my custom processor should pick the version 2.0.0-snapshot while building but that's not happening. Can anyone point me out to the problem?
... View more