Ptkp is a library made for plugin systems. It was previously part of the PTK (Pixel Tool Kit) library, but has been separated into its own library for easier use and maintenance.
- Java 17 or higher
- Maven
To include ptkp in your project, add the following dependency and repository to your pom.xml
:
<dependency>
<groupId>com.pixelservices.plugin</groupId>
<artifactId>ptkp</artifactId>
<version>${ptkpversion}</version>
</dependency>
<repository>
<id>pixel-services-releases</id>
<name>Pixel Services</name>
<url>https://maven.pixel-services.com/releases</url>
</repository>
We welcome contributions! To contribute to ptkp:
- Fork the repository: ptkp on GitHub
- Create a feature branch:
git checkout -b feature-name
- Commit your changes:
git commit -m 'Add feature'
- Push to the branch:
git push origin feature-name
- Submit a pull request.