You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gretty is a feature-rich gradle plugin for running web-apps on embedded servlet containers.
@@ -16,34 +16,37 @@ A complete list of Gretty features is available in [feature overview](http://akh
16
16
17
17
[](https://gitter.im/saladinkzn/gretty?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
18
18
19
-
If you are new with Gretty, try [getting started](http://saladinkzn.github.io/gretty-doc/Getting-started.html) page.
19
+
If you are new with Gretty, try [getting started](http://akhikhl.github.io/gretty-doc/Getting-started.html) page.
20
20
21
21
#### :star: What's new
22
22
23
-
June 14, 2016: Gretty 1.3.0 is out and immediately available at [Bintray](https://bintray.com/akhikhl/maven/gretty/view) and [Maven Central](http://search.maven.org/#search|ga|1|g%3A%22ru.shadam.gretty%22).
23
+
Aug 5, 2016: Andrey Hihlovskiy is back to maintaining Gretty! Many thanks to Timur Shakurov for his great work on Gretty maintenance
24
+
during the past year!
24
25
25
-
See [Gretty 1.3.0 release announcement](RELEASE.md#gretty-fork-130-release-announcement) for more information.
26
+
Aug 5, 2016: Gretty 1.4.0 is out and immediately available at [Bintray](https://bintray.com/akhikhl/maven/gretty/view) and [Maven Central](http://search.maven.org/#search|ga|1|g%3A%22org.akhikhl.gretty%22).
27
+
28
+
See [Gretty 1.4.0 release announcement](RELEASE.md#gretty-140-release-announcement) for more information.
26
29
27
30
See also: [complete list of changes](changes.md) in this and previous versions.
28
31
29
32
#### Documentation
30
33
31
-
You can learn about all Gretty features in [online documentation](http://saladinkzn.github.io/gretty-doc/).
34
+
You can learn about all Gretty features in [online documentation](http://akhikhl.github.io/gretty-doc/).
32
35
33
36
#### System requirements
34
37
35
-
Gretty requires JDK7 or JDK8 and Gradle 1.10 or newer (Gradle 2.4 is highly recommended!).
38
+
Gretty requires JDK7 or JDK8 and Gradle 1.10 or newer (Gradle 2.14.1 is highly recommended!).
36
39
37
40
Gretty also works on JDK6, although Jetty support is limited to versions 7 and 8 in this case. This is due to the fact that Jetty 9 was compiled against JDK7 and it's bytecode is not compatible with JDK6.
38
41
39
42
#### Availability
40
43
41
44
Gretty is an open-source project and is freely available in sources as well as in compiled form.
42
45
43
-
All releases of Gretty are available at [Bintray](https://bintray.com/saladinkzn/maven/gretty-fork/view)
46
+
All releases of Gretty are available at [Bintray](https://bintray.com/akhikhl/maven/gretty/view)
44
47
45
48
#### Copyright and License
46
49
47
-
Copyright 2013-2016 (c) Timur Shakurov, Andrey Hihlovskiy and [contributors](CONTRIBUTORS).
50
+
Copyright 2013-2016 (c) Andrey Hihlovskiy, Timur Shakurov and [contributors](CONTRIBUTORS).
48
51
49
52
All versions, present and past, of Gretty are licensed under [MIT license](LICENSE).
3. Fixed failing springBootWebSocket example (https://github.com/akhikhl/gretty/pull/278)
20
+
21
+
4. Fixed issue #247: Could not find property 'main' on task ':run' (https://github.com/akhikhl/gretty/pull/279)
22
+
7
23
#### Version 1.3.0
8
24
9
25
1. New scanner for jdk 7+
10
-
26
+
11
27
2. Fix for: akhikhl#239 (Gretty service port)
12
-
28
+
13
29
3. Fix for: akhikhl#195 (Possibility to run multiple gretty builds on different ports)
14
-
30
+
15
31
4. Support overlays for war webapps in farms #4
16
-
32
+
17
33
5. Update jetty to 9.3 (by providing separate 'container' because latest jetty 9.3 is compiled with jdk 8)
18
-
34
+
19
35
6. Add support for inserting paths before application output folders (will fix #6)
20
-
36
+
21
37
7. Add support for dependencies option in farm webapp configuration. #13
22
-
38
+
23
39
8. New feature: akhikhl#262 (Changing product name)
24
-
40
+
25
41
9. Fix for duplicate entries in getResources(path) in tomcat 7 and 8 #20
26
-
42
+
27
43
#### Version 1.2.5
28
44
29
45
1. scanDependencies property is working again.
@@ -198,15 +214,15 @@ Maintenance release. Fixed bug: "readonly property" exception when trying to gen
198
214
199
215
- Resolved issue #89, "How to configure fastReload?".
200
216
201
-
- Upgrades:
217
+
- Upgrades:
202
218
- gradle wrapper to version 2.1
203
219
- Groovy to version 2.3.7
204
220
- SpringBoot to version 1.1.7.RELEASE
205
221
- Embedded Tomcat 7 to version 7.0.55
206
-
- Embedded Tomcat 8 to version 8.0.14
222
+
- Embedded Tomcat 8 to version 8.0.14
207
223
- Embedded Jetty 9 to version 9.2.3.v20140905
208
224
- asm to version 5.0.3
209
-
225
+
210
226
- Implemented support of Gradle 1.10 (still, using Gradle 2.1 is highly recommended!).
211
227
212
228
- fixed issues with groovy-all versions and logback versions in the webapp classpath
@@ -252,7 +268,7 @@ Maintenance release. Fixed bug: "readonly property" exception when trying to gen
252
268
Gretty 1.1.0 brings one little incompatibility: property jettyEnvXml was renamed to jettyEnvXmlFile. If you are using jettyEnvXml, please adjust your gradle scripts accordingly.
253
269
254
270
#### Version 1.0.0
255
-
271
+
256
272
- Unified all Gretty plugins to a single plugin "org.akhikhl.gretty".
257
273
258
274
- Introduced [servlet container selection via servletContainer property](http://akhikhl.github.io/gretty-doc/Switching-between-servlet-containers.html).
@@ -277,7 +293,7 @@ Gretty 1.1.0 brings one little incompatibility: property jettyEnvXml was renamed
277
293
- Upgraded to Jetty 9.2.1.v20140609. See [Jetty Release 9.2.0 announcement](http://dev.eclipse.org/mhonarc/lists/jetty-announce/msg00065.html)
278
294
and [Jetty 9.2.1.v20140609 release announcement](http://dev.eclipse.org/mhonarc/lists/jetty-announce/msg00066.html) for technical details
279
295
on new Jetty version.
280
-
296
+
281
297
- Upgraded to Spring Boot 1.1.1.RELEASE.
282
298
283
299
#### Version 0.0.24
@@ -399,4 +415,3 @@ Gretty 1.1.0 brings one little incompatibility: property jettyEnvXml was renamed
0 commit comments