Skip to content

Commit 33185ca

Browse files
Add p2 update site (#191)
* Add p2 update site Signed-off-by: Jinbo Wang <[email protected]> * Rename the category name to Java Debug Server
1 parent 19b5dcf commit 33185ca

File tree

4 files changed

+32
-1
lines changed

4 files changed

+32
-1
lines changed

com.microsoft.java.debug.plugin/META-INF/MANIFEST.MF

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
3-
Bundle-Name: Debug
3+
Bundle-Name: Java Debug Server Plugin
44
Bundle-SymbolicName: com.microsoft.java.debug.plugin;singleton:=true
55
Bundle-Version: 0.10.0
66
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
77
Bundle-ActivationPolicy: lazy
88
Bundle-Activator: com.microsoft.java.debug.plugin.internal.JavaDebuggerServerPlugin
9+
Bundle-Vendor: Microsoft
910
Import-Package: org.eclipse.jdt.core,
1011
org.eclipse.jdt.launching,
1112
org.osgi.framework;version="1.3.0"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<site>
3+
<bundle id="com.microsoft.java.debug.plugin" version="0.10.0">
4+
<category name="javadebug" />
5+
</bundle>
6+
<category-def name="javadebug" label="Java Debug Server"/>
7+
</site>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>com.microsoft.java</groupId>
6+
<artifactId>java-debug-parent</artifactId>
7+
<version>0.10.0</version>
8+
</parent>
9+
<artifactId>com.microsoft.java.debug.repository</artifactId>
10+
<packaging>eclipse-repository</packaging>
11+
<name>${base.name} :: P2 Update site</name>
12+
<build>
13+
<plugins>
14+
<plugin>
15+
<groupId>org.eclipse.tycho</groupId>
16+
<artifactId>tycho-maven-plugin</artifactId>
17+
<version>${tycho-version}</version>
18+
<extensions>true</extensions>
19+
</plugin>
20+
</plugins>
21+
</build>
22+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
<modules>
6060
<module>com.microsoft.java.debug.core</module>
6161
<module>com.microsoft.java.debug.plugin</module>
62+
<module>com.microsoft.java.debug.repository</module>
6263
</modules>
6364
<build>
6465
<pluginManagement>

0 commit comments

Comments
 (0)