Provides a general-purpose, type-safe DAO. Currently supported databases are the following:
Typewriter runs on all major operating systems and requires only Java version 23 or later to run.
To check, please run java -version
on your terminal.
For any code snippet below, please substitute the version given with the version of Typewriter you wish to use.
Add JitPack repository at the end of repositories element in your build.xml:
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
Add it into in the dependencies element like so:
<dependency>
<groupId>com.github.teletha</groupId>
<artifactId>typewriter</artifactId>
<version>1.13.0</version>
</dependency>
Add JitPack repository at the end of repositories in your build.gradle:
repositories {
maven { url "https://jitpack.io" }
}
Add it into the dependencies section like so:
dependencies {
implementation 'com.github.teletha:typewriter:1.13.0'
}
Add JitPack repository at the end of resolvers in your build.sbt:
resolvers += "jitpack" at "https://jitpack.io"
Add it into the libraryDependencies section like so:
libraryDependencies += "com.github.teletha" % "typewriter" % "1.13.0"
Add JitPack repository at the end of repositories in your project.clj:
:repositories [["jitpack" "https://jitpack.io"]]
Add it into the dependencies section like so:
:dependencies [[com.github.teletha/typewriter "1.13.0"]]
Add it into your project definition class like so:
require("com.github.teletha", "typewriter", "1.13.0");
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
The overwhelming majority of changes to this project don't add new features at all. Optimizations, tests, documentation, refactorings -- these are all part of making this product meet the highest standards of code quality and usability. Contributing improvements in these areas is much easier, and much less of a hassle, than contributing code for new features.
If you come across a bug, please file a bug report. Warning us of a bug is possibly the most valuable contribution you can make to Typewriter. If you encounter a bug that hasn't already been filed, please file a report with an SSCCE demonstrating the bug. If you think something might be a bug, but you're not sure, ask on StackOverflow or on typewriter-discuss.
Typewriter depends on the following products on runtime.
Copyright (C) 2024 The TYPEWRITER Development Team
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.