diff --git a/README.md b/README.md new file mode 100644 index 0000000..e6cc59e --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +Modified version of [OpenSymphony's OSCache](https://bitbucket.org/opensymphony/oscache/) with support for automatically generating keys that take in consideration the server port (HTTP, HTTPS). + +To enable add the following to `oscache.properties`: + +```ini +cache.use.host.domain.in.key=true +``` + diff --git a/build.gradle b/build.gradle index c5b7e6f..769e85e 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,5 @@ apply plugin: 'java' +apply plugin: 'maven-publish' group = 'opensymphony' version = '2.4.3-ect' @@ -36,3 +37,11 @@ jar { "Implementation-Vendor": "OpenSymphony") } } + +publishing { + publications { + maven(MavenPublication) { + from components.java + } + } +} \ No newline at end of file diff --git a/readme.txt b/old/readme.txt similarity index 100% rename from readme.txt rename to old/readme.txt