Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't find libraries #136

Closed
tmrozek opened this issue Jun 14, 2021 · 1 comment · Fixed by #146
Closed

Can't find libraries #136

tmrozek opened this issue Jun 14, 2021 · 1 comment · Fixed by #146
Assignees
Labels
Milestone

Comments

@tmrozek
Copy link

tmrozek commented Jun 14, 2021

Hello, I'm trying to compile your sources and I've found it difficult so far. Could you please tell me where to find libraries such as oracle.javatools.data? I can't find it anywhere in the sqldeveloper zip file.

Second thing - I suppose that in org.oddgen path to specific (17.*) sqldeveloper instalation is hardcoded.

@PhilippSalvisberg
Copy link
Member

Thank you @tmrozek for reporting this bug.

I could reproduce the problem in a different environment.

As a workaround you can add the following dependencies to the pom.xml of this project:

		<dependency>
			<!-- overriding oddgen dependency -->
			<groupId>oracle</groupId>
			<artifactId>javatools-nodeps</artifactId>
			<version>13.0.0</version>
			<scope>system</scope>
			<systemPath>${sqldev.basedir}/modules/oracle.javatools/javatools-nodeps.jar</systemPath>
		</dependency>
		<dependency>
			<!-- missing dependency for javax.annotation.Nullable -->
			<groupId>com.google.code.findbugs</groupId>
			<artifactId>jsr305</artifactId>
			<version>3.0.2</version>
			<scope>provided</scope>
		</dependency>

Then you should be able to build the project as described here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants