Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
bad9de0481 | |||
8a56ff7a03 | |||
050548c110 |
3 changed files with 17 additions and 0 deletions
8
README.md
Normal file
8
README.md
Normal 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
|
||||||
|
```
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
|
apply plugin: 'maven-publish'
|
||||||
|
|
||||||
group = 'opensymphony'
|
group = 'opensymphony'
|
||||||
version = '2.4.3-ect'
|
version = '2.4.3-ect'
|
||||||
|
@ -36,3 +37,11 @@ jar {
|
||||||
"Implementation-Vendor": "OpenSymphony")
|
"Implementation-Vendor": "OpenSymphony")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
publications {
|
||||||
|
maven(MavenPublication) {
|
||||||
|
from components.java
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue