Skip to content

Commit ea7cccf

Browse files
committed
release 1.2.3
1 parent a497bbf commit ea7cccf

File tree

36 files changed

+124
-64
lines changed

36 files changed

+124
-64
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Build Status](http://img.shields.io/travis/akhikhl/gretty.svg)](https://travis-ci.org/akhikhl/gretty)
44
[![Maintainer Status](http://stillmaintained.com/akhikhl/gretty.png)](http://stillmaintained.com/akhikhl/gretty)
5-
[![Release](http://img.shields.io/badge/release-1.2.2-47b31f.svg)](https://github.com/akhikhl/gretty/releases/latest)
6-
[![Snapshot](http://img.shields.io/badge/current-1.2.3--SNAPSHOT-47b31f.svg)](https://github.com/akhikhl/gretty/tree/master)
5+
[![Release](http://img.shields.io/badge/release-1.2.3-47b31f.svg)](https://github.com/akhikhl/gretty/releases/latest)
6+
[![Snapshot](http://img.shields.io/badge/current-1.2.4--SNAPSHOT-47b31f.svg)](https://github.com/akhikhl/gretty/tree/master)
77
[![License](http://img.shields.io/badge/license-MIT-47b31f.svg)](#copyright-and-license)
88

99
Gretty is a feature-rich gradle plugin for running web-apps on embedded servlet containers.
@@ -18,10 +18,10 @@ If you are new with Gretty, try [getting started](http://akhikhl.github.io/grett
1818

1919
#### :star: What's new
2020

21-
Apr 20, 2015: Gretty 1.2.2 is out and immediately available at [Gradle plugin portal](http://plugins.gradle.org/plugin/org.akhikhl.gretty),
21+
May 18, 2015: Gretty 1.2.3 is out and immediately available at [Gradle plugin portal](http://plugins.gradle.org/plugin/org.akhikhl.gretty),
2222
[Bintray](https://bintray.com/akhikhl/maven/gretty/view) and [Maven Central](http://search.maven.org/#search|ga|1|g%3A%22org.akhikhl.gretty%22).
2323

24-
See [Gretty 1.2.2 release announcement](RELEASE.md#gretty-122-release-announcement) for more information.
24+
See [Gretty 1.2.3 release announcement](RELEASE.md#gretty-123-release-announcement) for more information.
2525

2626
See also: [complete list of changes](changes.md) in this and previous versions.
2727

@@ -31,7 +31,7 @@ You can learn about all Gretty features in [online documentation](http://akhikhl
3131

3232
#### System requirements
3333

34-
Gretty requires JDK7 or JDK8 and Gradle 1.10 or newer (Gradle 2.3 is highly recommended!).
34+
Gretty requires JDK7 or JDK8 and Gradle 1.10 or newer (Gradle 2.4 is highly recommended!).
3535

3636
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.
3737

RELEASE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## Gretty 1.2.3 release announcement
2+
3+
May 18, 2015: Gretty version 1.2.3 is out and immediately available at github, bintray, maven central and gradle plugin portal!
4+
5+
Gretty version 1.2.3 introduces the following changes:
6+
7+
1. Resolved issue #175 "SpringBoot applications are not isolated from one another in farm and product runs"
8+
9+
2. Resolved issues with logging: #164, #145, #133
10+
11+
3. Upgraded to Tomcat 7.0.61 and Tomcat 8.0.22
12+
13+
4. Upgrade and tests on Gradle 2.4 (Gradle versions >= 1.10 are still supported)
14+
115
## Gretty 1.2.2 release announcement
216

317
Apr 20, 2015: Gretty version 1.2.2 is out and immediately available at github, bintray, maven central and gradle plugin portal!

changes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
### What's new:
66

7+
#### Version 1.2.3
8+
9+
1. Resolved issue #175 "SpringBoot applications are not isolated from one another in farm and product runs"
10+
11+
2. Resolved issues with logging: #164, #145, #133
12+
13+
3. Upgraded to Tomcat 7.0.61 and Tomcat 8.0.22
14+
15+
4. Upgrade and tests on Gradle 2.4 (Gradle versions >= 1.10 are still supported)
16+
717
#### Version 1.2.2
818

919
Gretty version 1.2.2 fixes [issue #163](https://github.com/akhikhl/gretty/issues/152): MissingPropertyException when running Tomcat with HTTPS.

examples/extraResourceBases/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group=org.akhikhl.gretty.examples
2-
version=1.2.3-SNAPSHOT
3-
gretty_version=1.2.3-SNAPSHOT
2+
version=1.2.3
3+
gretty_version=1.2.3
44
groovy_version=2.3.10
55
logback_version=1.1.3
66
spock_version=1.0-groovy-2.3

examples/farm/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group=org.akhikhl.gretty.examples
2-
version=1.2.3-SNAPSHOT
3-
gretty_version=1.2.3-SNAPSHOT
2+
version=1.2.3
3+
gretty_version=1.2.3
44
groovy_version=2.3.10
55
logback_version=1.1.3
66
spock_version=1.0-groovy-2.3

examples/farmJacoco/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group=org.akhikhl.gretty.examples
2-
version=1.2.3-SNAPSHOT
3-
gretty_version=1.2.3-SNAPSHOT
2+
version=1.2.3
3+
gretty_version=1.2.3
44
groovy_version=2.3.10
55
logback_version=1.1.3
66
spock_version=1.0-groovy-2.3

examples/farmSecure/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group=org.akhikhl.gretty.examples
2-
version=1.2.3-SNAPSHOT
3-
gretty_version=1.2.3-SNAPSHOT
2+
version=1.2.3
3+
gretty_version=1.2.3
44
groovy_version=2.3.10
55
logback_version=1.1.3
66
spock_version=1.0-groovy-2.3

examples/filterWebapp/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group=org.akhikhl.gretty.examples
2-
version=1.2.3-SNAPSHOT
3-
gretty_version=1.2.3-SNAPSHOT
2+
version=1.2.3
3+
gretty_version=1.2.3
44
groovy_version=2.3.10
55
logback_version=1.1.3
66
spock_version=1.0-groovy-2.3

examples/gretty-taglib-example/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group=org.akhikhl.gretty.examples
2-
version=1.2.3-SNAPSHOT
3-
gretty_version=1.2.3-SNAPSHOT
2+
version=1.2.3
3+
gretty_version=1.2.3
44
groovy_version=2.3.10
55
logback_version=1.1.3
66
spock_version=1.0-groovy-2.3

examples/grettyLogging_logback/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group=org.akhikhl.gretty.examples
2-
version=1.2.3-SNAPSHOT
3-
gretty_version=1.2.3-SNAPSHOT
2+
version=1.2.3
3+
gretty_version=1.2.3
44
groovy_version=2.3.10
55
logback_version=1.1.3
66
spock_version=1.0-groovy-2.3

0 commit comments

Comments
 (0)