I am currently migrating a project which using sqlj to do all the query. It is using JDeveloper to to develop the project.
Currently I need to create a new maven project using netbeans and I need to reuse those sqlj in this migrationg. But netbeans does not regonize sqlj.
Is there any solution on how do I migrate the sqlj to maven project in netbeans? I have imported the plugin in the maven but it have some error which is something like could not get the version.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sqlj-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>sqlj</id>
<goals>
<goal>sqlj</goal>
</goals>
<configuration>
<sqljDirs>
<sqljDir>src\main</sqljDir>
</sqljDirs>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>sqlj-maven-plugin</groupId>
<artifactId>sqlj</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
</plugin>
I have download the SQLJ translator in Oracle Oracle Link
I have install the translator.jar into my maven repository according to Maven 3rd party jar installation guide Here
Anyone have this migration case before that may guide me or give me some advice on this migration.
Thanks in advance.