Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noamt/teamcity-dependency-distributer
extracts, tags and distributes any JAR files a TeamCity plugin might depend on
https://github.com/noamt/teamcity-dependency-distributer
Last synced: 16 days ago
JSON representation
extracts, tags and distributes any JAR files a TeamCity plugin might depend on
- Host: GitHub
- URL: https://github.com/noamt/teamcity-dependency-distributer
- Owner: noamt
- Created: 2011-11-09T09:20:11.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-06-10T11:07:49.000Z (over 12 years ago)
- Last Synced: 2023-03-11T16:26:39.475Z (over 1 year ago)
- Language: Groovy
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
When developing TeamCity plugins, one might need to depend on JAR files found in the TeamCity installation.
JetBrains don't distribute these common API jars via public repositories and building a dependant plugin with a
build tool or on a build server can become a pain.
This app scans a plugin POM file for TeamCity dependencies, locates said dependencies in the TeamCity installation,
installs them in the local .m2 directory and deploys them to a repository.The POM file is expected to declare:
-A property named 'teamcity.version' with the value of the currently used version of TeamCity.
-All dependencies from $TC_INSTALL/buildAgent/lib with a groupId of 'org.jetbrains.teamcity.agent'.
-All dependencies from $TC_INSTALL/webapps/ROOT/WEB-INF/lib with a groupId of 'org.jetbrains.teamcity.webapp'.
-All dependencies from $TC_INSTALL/lib with a groupId of 'org.jetbrains.teamcity.tomcat'.
-All dependencies with an artifactId equal to the name of the dependency JAR file (omitting the suffix).The 'script.properties' file holds the following settings:
-Path of the project POM file.
-Path of the TeamCity installation directory.
-Deployment repository URL.
-Deployment credentials.