Hello Guys,
I am trying to create a jive plugin using java 8 and jive 8, but is not working.
Using jive 7 it works.
I have the following links in my mvn settings.xml:
<repositories>
<repository>
<id>jive.internal</id>
<name>Jive's Repository</name>
<url>
https://maven-secure.jivesoftware.com/archiva/repository/jive.internal
</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>jive.snapshots</id>
<name>Jive's Repository</name>
<url>
https://maven-secure.jivesoftware.com/archiva/repository/jive.snapshots
</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
Java_Home: C:\Program Files\Java\jdk1.8.0_111
When I run the command: mvn -U jive:create-plugin for jve version 8.0.4.0, I get the following error:
[ERROR] Failed to execute goal com.jivesoftware.maven.plugins:jive-project-plugin:3.0.5:create-plugin (default-cli) on project standalone-pom: Execution default-cli of goal com.jivesoft
ware.maven.plugins:jive-project-plugin:3.0.5:create-plugin failed. NullPointerException -> [Help 1]
If I run the same command for jive 7, it works.