| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,7 +5,7 @@ | |||
| 5 | 5 | <parent> | |
| 6 | 6 | <groupId>com.microsoft.java</groupId> | |
| 7 | 7 | <artifactId>java-debug-parent</artifactId> | |
| 8 | - <version>0.31.1</version> | ||
| 8 | + <version>0.32.0</version> | ||
| 9 | 9 | </parent> | |
| 10 | 10 | <artifactId>com.microsoft.java.debug.core</artifactId> | |
| 11 | 11 | <packaging>jar</packaging> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,6 +6,6 @@ | |||
| 6 | 6 | <classpathentry kind="src" path="src/main/java"/> | |
| 7 | 7 | <classpathentry exported="true" kind="lib" path="lib/rxjava-2.1.1.jar"/> | |
| 8 | 8 | <classpathentry exported="true" kind="lib" path="lib/reactive-streams-1.0.0.jar"/> | |
| 9 | - <classpathentry exported="true" kind="lib" path="lib/com.microsoft.java.debug.core-0.31.1.jar" sourcepath="/com.microsoft.java.debug.core"/> | ||
| 9 | + <classpathentry exported="true" kind="lib" path="lib/com.microsoft.java.debug.core-0.32.0.jar" sourcepath="/com.microsoft.java.debug.core"/> | ||
| 10 | 10 | <classpathentry kind="output" path="target/classes"/> | |
| 11 | 11 | </classpath> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,7 +2,7 @@ Manifest-Version: 1.0 | |||
| 2 | 2 | Bundle-ManifestVersion: 2 | |
| 3 | 3 | Bundle-Name: Java Debug Server Plugin | |
| 4 | 4 | Bundle-SymbolicName: com.microsoft.java.debug.plugin;singleton:=true | |
| 5 | - Bundle-Version: 0.31.1 | ||
| 5 | + Bundle-Version: 0.32.0 | ||
| 6 | 6 | Bundle-RequiredExecutionEnvironment: JavaSE-1.8 | |
| 7 | 7 | Bundle-ActivationPolicy: lazy | |
| 8 | 8 | Bundle-Activator: com.microsoft.java.debug.plugin.internal.JavaDebuggerServerPlugin | |
@@ -25,4 +25,4 @@ Bundle-ClassPath: lib/commons-io-2.5.jar, | |||
| 25 | 25 | ., | |
| 26 | 26 | lib/rxjava-2.1.1.jar, | |
| 27 | 27 | lib/reactive-streams-1.0.0.jar, | |
| 28 | - lib/com.microsoft.java.debug.core-0.31.1.jar | ||
| 28 | + lib/com.microsoft.java.debug.core-0.32.0.jar | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,7 +5,7 @@ | |||
| 5 | 5 | <parent> | |
| 6 | 6 | <groupId>com.microsoft.java</groupId> | |
| 7 | 7 | <artifactId>java-debug-parent</artifactId> | |
| 8 | - <version>0.31.1</version> | ||
| 8 | + <version>0.32.0</version> | ||
| 9 | 9 | </parent> | |
| 10 | 10 | <artifactId>com.microsoft.java.debug.plugin</artifactId> | |
| 11 | 11 | <packaging>eclipse-plugin</packaging> | |
@@ -45,7 +45,7 @@ | |||
| 45 | 45 | <artifactItem> | |
| 46 | 46 | <groupId>com.microsoft.java</groupId> | |
| 47 | 47 | <artifactId>com.microsoft.java.debug.core</artifactId> | |
| 48 | - <version>0.31.1</version> | ||
| 48 | + <version>0.32.0</version> | ||
| 49 | 49 | </artifactItem> | |
| 50 | 50 | </artifactItems> | |
| 51 | 51 | </configuration> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | <?xml version="1.0" encoding="UTF-8"?> | |
| 2 | 2 | <site> | |
| 3 | - <bundle id="com.microsoft.java.debug.plugin" version="0.31.1"> | ||
| 3 | + <bundle id="com.microsoft.java.debug.plugin" version="0.32.0"> | ||
| 4 | 4 | <category name="javadebug" /> | |
| 5 | 5 | </bundle> | |
| 6 | 6 | <category-def name="javadebug" label="Java Debug Server"/> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,7 +4,7 @@ | |||
| 4 | 4 | <parent> | |
| 5 | 5 | <groupId>com.microsoft.java</groupId> | |
| 6 | 6 | <artifactId>java-debug-parent</artifactId> | |
| 7 | - <version>0.31.1</version> | ||
| 7 | + <version>0.32.0</version> | ||
| 8 | 8 | </parent> | |
| 9 | 9 | <artifactId>com.microsoft.java.debug.repository</artifactId> | |
| 10 | 10 | <packaging>eclipse-repository</packaging> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,7 +6,7 @@ | |||
| 6 | 6 | <name>${base.name} :: Parent</name> | |
| 7 | 7 | <description>The Java Debug Server is an implementation of Visual Studio Code (VSCode) Debug Protocol. It can be used in Visual Studio Code to debug Java programs.</description> | |
| 8 | 8 | <url>https://github.com/Microsoft/java-debug</url> | |
| 9 | - <version>0.31.1</version> | ||
| 9 | + <version>0.32.0</version> | ||
| 10 | 10 | <packaging>pom</packaging> | |
| 11 | 11 | <properties> | |
| 12 | 12 | <base.name>Java Debug Server for Visual Studio Code</base.name> | |
| Back | FazBrowse Home | New Git URL |
0 commit comments