Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/loleg/confluence-tiddlywiki-plugin
Automatically exported from code.google.com/p/confluence-tiddlywiki-plugin
https://github.com/loleg/confluence-tiddlywiki-plugin
Last synced: 4 days ago
JSON representation
Automatically exported from code.google.com/p/confluence-tiddlywiki-plugin
- Host: GitHub
- URL: https://github.com/loleg/confluence-tiddlywiki-plugin
- Owner: loleg
- License: bsd-2-clause
- Created: 2015-03-13T23:04:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-13T23:50:29.000Z (almost 10 years ago)
- Last Synced: 2024-12-29T16:37:19.583Z (5 days ago)
- Language: HTML
- Size: 223 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
- License: LICENSE.TXT
Awesome Lists containing this project
README
You have successfully created a plugin using the Confluence plugin archetype. What to do now:
1. CUSTOMISE THE PLUGIN
- Run 'mvn eclipse:eclipse' to generate an Eclipse project file.
- Edit pom.xml. Add information about your project, its developers and your organisation. Check the version of
Confluence in the dependencies section is correct.
- Edit the plugin descriptor, src/main/resources/atlassian-plugin.xml. Add or modify plugin modules in your project.
- Edit the plugin code in src/main/java/ or the unit tests in src/test/java/.More documentation on Confluence plugins is available here:
http://confluence.atlassian.com/display/DOC/Confluence+Plugin+Guide
2. BUILD THE PLUGIN
Building with your plugin with Maven is really easy:
- Run 'mvn compile' to compile the plugin.
- Run 'mvn test' to run the unit tests.
- Run 'mvn package' to produce the JAR.Please remove this file before releasing your plugin.
** NOTE ON RESOURCE FILTERING **
The default pom has 'resource filtering' enabled, which means files in the src/main/resources directory will have
variables in the form ${var} replaced during the build process. For example, the default atlassian-plugin.xml includes
${project.artifactId}, which is replaced with the artifactId taken from the POM when building the plugin.More information on resource filtering is available in the Maven documentation:
http://maven.apache.org/plugins/maven-resources-plugin/examples/filter.html