Skip to content

Commit 7afe187

Browse files
committed
java-client updated for bugfixes.
1 parent 4434c96 commit 7afe187

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

DeveloperGuide.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ See below correspondent `java-client` version requirements:
2424
|------------------|-------------|
2525
| 0.0.9 | 2.0.10 |
2626
| 0.0.11 | 2.0.12 |
27+
| 0.0.17 | 2.0.17 |
2728

2829
- Modify `.classpath` file inside `plugin-test-fragment` project to provide path to `java-client-{X.X.X}-all.jar` location;
2930

eclipse-plugin/.classpath

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="lib" path="libs/java-client-2.0.15-all.jar" sourcepath="D:/IdeaProjects/java-client/src/main/java"/>
43
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
54
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
65
<classpathentry kind="src" path="src"/>
6+
<classpathentry kind="lib" path="libs/java-client-2.0.17-all.jar" sourcepath="D:/IdeaProjects/java-client/src/main"/>
77
<classpathentry kind="output" path="bin"/>
88
</classpath>

eclipse-plugin/META-INF/MANIFEST.MF

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: DeepCode-Eclipse-plugin
44
Bundle-SymbolicName: ai.deepcode;singleton:=true
5-
Bundle-Version: 0.0.16
5+
Bundle-Version: 0.0.17
66
Bundle-Activator: ai.deepcode.Activator
77
Bundle-Vendor: deepcode.ai
88
Require-Bundle: javax.inject,
@@ -29,4 +29,4 @@ Import-Package: javax.annotation;version="1.2.0",
2929
org.eclipse.ui.handlers
3030
Bundle-ActivationPolicy: lazy
3131
Bundle-ClassPath: .,
32-
libs/java-client-2.0.15-all.jar
32+
libs/java-client-2.0.17-all.jar

eclipse-plugin/src/ai/deepcode/core/DeepCodeIgnoreInfoHolder.java

+4
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,9 @@ protected String getDirPath(@NotNull Object file) {
3030
return PDU.toIFile(file).getParent().getFullPath().toString();
3131
}
3232

33+
@Override
34+
protected Object getProjectOfFile(@NotNull Object file) {
35+
return PDU.toIFile(file).getProject();
36+
}
3337

3438
}

0 commit comments

Comments
 (0)