Bundled Development Package
TeamCity comes bundled with a Development Package that can be used to start developing TeamCity plugins.
To get the package, use the .tar.gz or .exe. distribution. Upon installation, < > will have the devPackage directory which contains TeamCity open API binaries, javadoc, sources and archive with a sample plugin.
devPackage directory description
There are mainly two types of plugins in TeamCity: server-side plugins and agent-side plugins. To develop an agent-side plugin, you need the following part of the Open API:
serviceMessages.jar
common-api.jaragent-api.jar
Correspondingly for the server-side plugin, you need:
serviceMessages.jar
common-api.jarserver-api.jar
Note that sometimes a part of an agent-side plugin has to work in the same JVM where the build tool is executing. For example, some custom test runner can be executed in the JVM where the tests are running. The runtime directory of devPackage contains some jars that can be used in this case.
devPackage also contains some base classes for tests under the tests directory.
Sample Plugin
Building and deploying sample plugin
Building plugin with Apache Ant
Unpack
< >\devPackage\samplePlugin-src.zipinto a directory of your choiceEdit the
build.propertiesfile and set the value forpath.variable.teamcitydistributionproperty to the path of< >Run
ant distin the plugin directory (Ant 1.7+ is recommended). The plugin distribution should be created in thedistdirectory.
Building sample plugin in IntelliJ IDEA
Unpack
< >\devPackage\samplePlugin-src.zipinto a directory of your choiceOpen the project in IDEA (the .idea project should work OK in IntelliJ IDEA 9 and later (including IntelliJ IDEA 9.0 Community Edition))
On prompt to add the path variable, set the "TeamCityDistribution" path variable to the directory where TeamCity with devPackage is installed (<TeamCity Home Directory>).
Open Project Structure and ensure you have Project SDK with name "1.6" pointing to JDK version 1.6
Running the server with plugin from IDEA
Either edit the
build.propertiesfile to set thepath.variable.teamcitydistributionproperty or regenerate the build script from IDEA (execute "Generate Ant Build" with the settings: single file, all other options unchecked).
If you use the Ultimate edition of IntelliJ IDEA, you can start TeamCity's Tomcat right form the IDE:
Go to the "server" run configuration settings and configure Application Server pointing it to
< >Run the "server" run configuration. It will run Ant create distribution task, deploy the plugin into
${user.home}/.BuildServerdirectory and run the TeamCity server.
If you use the Community edition, see #Building plugin with Apache Ant - you can run "deploy" Ant build target right from Ant Build IDEA tool window and then start TeamCity manually.
Sample Plugin Functionality
The sample plugin adds "Click me!" button in the bottom of "Projects" page. Click it to navigate to the plugin description page.