[ERROR] No plugin found for prefix 'java2typescript'

I have a java REST API for which I am trying to generate Typescript definitions. Following is my maven configuration, based on the available documentation.

...
<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>

<pluginRepositories>
  <pluginRepository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </pluginRepository>
</pluginRepositories>

<dependencies>
  <dependency>
    <groupId>com.github.raphaeljolivet.java2typescript</groupId>
    <artifactId>java2typescript-maven-plugin</artifactId>
    <version>v0.3.0.rc1</version>
  </dependency>
  ....
</dependencies>

<build>
  <plugins>
    ...
    <plugin>
      <groupId>java2typescript</groupId>
      <artifactId>java2typescript-maven-plugin</artifactId>
      <version>0.3-SNAPSHOT</version>
      <configuration>
        <serviceClass>com.checkdigit.luna.service.HSMService</serviceClass>
        <moduleName>HSMService</moduleName>
      </configuration>
    </plugin>
  </plugins>
</build>

When I execute 'mvn java2typescript:generate' I am getting the following error.

[INFO] Scanning for projects...
[WARNING] The POM for java2typescript:java2typescript-maven-plugin:jar:0.3-SNAPSHOT is missing, no dependency information available
[WARNING] Failed to retrieve plugin descriptor for java2typescript:java2typescript-maven-plugin:0.3-SNAPSHOT: Plugin java2typescript:java2typescript-maven-plugin:0.3-SNAPSHOT or one of its dependencies could not be resolved: Failure to find java2typescript:java2typescript-maven-plugin:jar:0.3-SNAPSHOT in https://jitpack.io was cached in the local repository, resolution will not be reattempted until the update interval of jitpack.io has elapsed or updates are forced
Downloading: https://jitpack.io/java2typescript/maven-metadata.xml
Downloading: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml
Downloading: https://repo.maven.apache.org/maven2/java2typescript/maven-metadata.xml
Downloading: https://jitpack.io/org/apache/maven/plugins/maven-metadata.xml
Downloading: https://jitpack.io/org/codehaus/mojo/maven-metadata.xml
Downloaded: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-metadata.xml (13 KB at 25.2 KB/sec)
Downloading: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml
Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/mojo/maven-metadata.xml (20 KB at 1332.7 KB/sec)
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.353 s
[INFO] Finished at: 2016-08-22T12:26:39-04:00
[INFO] Final Memory: 16M/619M
[INFO] ------------------------------------------------------------------------
[ERROR] No plugin found for prefix 'java2typescript' in the current project and in the plugin groups [java2typescript, org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (/Users/ramaghanta/.m2/repository), jitpack.io (https://jitpack.io), central (https://repo.maven.apache.org/maven2)] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException

I am not sure if something's wrong in my configuration. I really appreciate any help to fix this.