Compare commits

...

3 commits

Author SHA1 Message Date
bad9de0481 Added instructions to README. 2017-05-21 21:20:46 -07:00
8a56ff7a03 Added README. 2017-05-21 14:48:38 -07:00
050548c110 Added maven local publishing. 2017-05-21 13:52:24 -07:00
3 changed files with 17 additions and 0 deletions

8
README.md Normal file
View file

@ -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
```

View file

@ -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
}
}
}