forked from davidstevenrojas/webapp-github-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
24 lines (22 loc) · 971 Bytes
/
plugin.xml
File metadata and controls
24 lines (22 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<!-- The plugin.dtd file is located in the OXYGEN_INSATALL_DIR/plugins directory -->
<!DOCTYPE plugin SYSTEM "../plugin.dtd">
<plugin
id="com.oxygenxml.examples.github.GitHubPlugin"
name="GitHubPlugin"
description="A plugin to enable the editing and committing of files from a GitHub repository."
version="${project.nosnapshot.version}"
vendor="SyncRO"
class="com.oxygenxml.examples.github.GitHubPlugin">
<runtime>
<librariesFolder name="lib"/>
<library name="target/classes"/>
</runtime>
<extension type="URLHandler"
class="com.oxygenxml.examples.github.GithubURLStreamHandlerPluginExtension"/>
<extension type="WebappServlet"
class="com.oxygenxml.examples.github.GitHubOauthServlet"/>
<extension type="WebappStaticResourcesFolder" path="web/static/" href="github-static"/>
<extension type="WebappServlet" role="config"
class="com.oxygenxml.examples.github.GithubPluginConfigExtension"/>
</plugin>