Skip to content

Commit

Permalink
release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Hihlovskiy committed Aug 5, 2016
1 parent 8926363 commit 7a2a637
Show file tree
Hide file tree
Showing 40 changed files with 149 additions and 103 deletions.
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
![logo](http://akhikhl.github.io/gretty/media/gretty_logo_1.x.png "gretty logo")

[![Build Status](http://img.shields.io/travis/saladinkzn/gretty.svg)](https://travis-ci.org/saladinkzn/gretty)
[![Build Status](http://img.shields.io/travis/akhikhl/gretty.svg)](https://travis-ci.org/akhikhl/gretty)
![Maintenance Status](http://img.shields.io/maintenance/yes/2016.svg)
[![Latest release](http://img.shields.io/badge/release-1.3.0-47b31f.svg)](https://github.com/saladinkzn/gretty/tags/v1.3.0)
[![Snapshot](http://img.shields.io/badge/current-1.4.0--SNAPSHOT-47b31f.svg)](https://github.com/saladinkzn/gretty/tree/master)
[![Latest release](http://img.shields.io/badge/release-1.4.0-47b31f.svg)](https://github.com/akhikhl/gretty/tags/v1.4.0)
[![Snapshot](http://img.shields.io/badge/current-1.4.1--SNAPSHOT-47b31f.svg)](https://github.com/akhikhl/gretty/tree/master)
[![License](http://img.shields.io/badge/license-MIT-47b31f.svg)](#copyright-and-license)

Gretty is a feature-rich gradle plugin for running web-apps on embedded servlet containers.
Expand All @@ -16,34 +16,37 @@ A complete list of Gretty features is available in [feature overview](http://akh

[![Join the chat at https://gitter.im/saladinkzn/gretty](https://badges.gitter.im/saladinkzn/gretty.svg)](https://gitter.im/saladinkzn/gretty?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

If you are new with Gretty, try [getting started](http://saladinkzn.github.io/gretty-doc/Getting-started.html) page.
If you are new with Gretty, try [getting started](http://akhikhl.github.io/gretty-doc/Getting-started.html) page.

#### :star: What's new

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).
Aug 5, 2016: Andrey Hihlovskiy is back to maintaining Gretty! Many thanks to Timur Shakurov for his great work on Gretty maintenance
during the past year!

See [Gretty 1.3.0 release announcement](RELEASE.md#gretty-fork-130-release-announcement) for more information.
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).

See [Gretty 1.4.0 release announcement](RELEASE.md#gretty-140-release-announcement) for more information.

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

#### Documentation

You can learn about all Gretty features in [online documentation](http://saladinkzn.github.io/gretty-doc/).
You can learn about all Gretty features in [online documentation](http://akhikhl.github.io/gretty-doc/).

#### System requirements

Gretty requires JDK7 or JDK8 and Gradle 1.10 or newer (Gradle 2.4 is highly recommended!).
Gretty requires JDK7 or JDK8 and Gradle 1.10 or newer (Gradle 2.14.1 is highly recommended!).

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.

#### Availability

Gretty is an open-source project and is freely available in sources as well as in compiled form.

All releases of Gretty are available at [Bintray](https://bintray.com/saladinkzn/maven/gretty-fork/view)
All releases of Gretty are available at [Bintray](https://bintray.com/akhikhl/maven/gretty/view)

#### Copyright and License

Copyright 2013-2016 (c) Timur Shakurov, Andrey Hihlovskiy and [contributors](CONTRIBUTORS).
Copyright 2013-2016 (c) Andrey Hihlovskiy, Timur Shakurov and [contributors](CONTRIBUTORS).

All versions, present and past, of Gretty are licensed under [MIT license](LICENSE).
20 changes: 18 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## Gretty 1.4.0 release announcement

Aug 5, 2016: Gretty version 1.4.0 is out and available at github, bintray and maven central

Gretty 1.4.0 introduces the following changes:

1. All changes by @saladinkzn were merged back to mainstream.

2. Upgraded gradle wrapper to 2.14.1 (https://github.com/akhikhl/gretty/pull/276)

2. Component upgrades (https://github.com/akhikhl/gretty/pull/277)

3. Fixed failing springBootWebSocket example (https://github.com/akhikhl/gretty/pull/278)

4. Fixed issue #247: Could not find property 'main' on task ':run' (https://github.com/akhikhl/gretty/pull/279)

## Gretty-Fork 1.3.0 release announcement

June 14, 2016: Gretty-Fork version 1.3.0 is out and available at github, bintray and maven central
Expand Down Expand Up @@ -168,8 +184,8 @@ Also Gretty version 1.1.8 includes upgrades of the following components to their

Gretty version 1.1.7 is out and immediately available at github, bintray, maven central and gradle plugin portal!

Gretty version 1.1.7 introduces new feature: [redirect filter](http://akhikhl.github.io/gretty-doc/Redirect-filter.html).
The feature is completely independent from the rest of Gretty and can be deployed as part of WAR-file.
Gretty version 1.1.7 introduces new feature: [redirect filter](http://akhikhl.github.io/gretty-doc/Redirect-filter.html).
The feature is completely independent from the rest of Gretty and can be deployed as part of WAR-file.
Charming thing about redirect filter is that it provides groovy-based configuration DSL.

## Gretty 1.1.6 release announcement
Expand Down
47 changes: 31 additions & 16 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,45 @@
[Project home](https://github.com/saladinkzn/gretty) | [Documentation](http://saladinkzn.github.io/gretty-doc/) | [Feature overview](http://saladinkzn.github.io/gretty-doc/Feature-overview.html)
[Project home](https://github.com/akhikhl/gretty) | [Documentation](http://akhikhl.github.io/gretty-doc/) | [Feature overview](http://akhikhl.github.io/gretty-doc/Feature-overview.html)

[![logo](http://akhikhl.github.io/gretty-doc/images/gretty_logo.png "gretty logo")](https://github.com/akhikhl/gretty)

### What's new:

#### Version 1.4.0

Aug 5, 2016: Gretty version 1.4.0 is out and available at github, bintray and maven central

Gretty 1.4.0 introduces the following changes:

1. All changes by @saladinkzn were merged back to mainstream.

2. Upgraded gradle wrapper to 2.14.1 (https://github.com/akhikhl/gretty/pull/276)

2. Component upgrades (https://github.com/akhikhl/gretty/pull/277)

3. Fixed failing springBootWebSocket example (https://github.com/akhikhl/gretty/pull/278)

4. Fixed issue #247: Could not find property 'main' on task ':run' (https://github.com/akhikhl/gretty/pull/279)

#### Version 1.3.0

1. New scanner for jdk 7+

2. Fix for: akhikhl#239 (Gretty service port)

3. Fix for: akhikhl#195 (Possibility to run multiple gretty builds on different ports)

4. Support overlays for war webapps in farms #4

5. Update jetty to 9.3 (by providing separate 'container' because latest jetty 9.3 is compiled with jdk 8)

6. Add support for inserting paths before application output folders (will fix #6)

7. Add support for dependencies option in farm webapp configuration. #13

8. New feature: akhikhl#262 (Changing product name)

9. Fix for duplicate entries in getResources(path) in tomcat 7 and 8 #20

#### Version 1.2.5

1. scanDependencies property is working again.
Expand Down Expand Up @@ -198,15 +214,15 @@ Maintenance release. Fixed bug: "readonly property" exception when trying to gen

- Resolved issue #89, "How to configure fastReload?".

- Upgrades:
- Upgrades:
- gradle wrapper to version 2.1
- Groovy to version 2.3.7
- SpringBoot to version 1.1.7.RELEASE
- Embedded Tomcat 7 to version 7.0.55
- Embedded Tomcat 8 to version 8.0.14
- Embedded Tomcat 8 to version 8.0.14
- Embedded Jetty 9 to version 9.2.3.v20140905
- asm to version 5.0.3

- Implemented support of Gradle 1.10 (still, using Gradle 2.1 is highly recommended!).

- fixed issues with groovy-all versions and logback versions in the webapp classpath
Expand Down Expand Up @@ -252,7 +268,7 @@ Maintenance release. Fixed bug: "readonly property" exception when trying to gen
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.

#### Version 1.0.0

- Unified all Gretty plugins to a single plugin "org.akhikhl.gretty".

- Introduced [servlet container selection via servletContainer property](http://akhikhl.github.io/gretty-doc/Switching-between-servlet-containers.html).
Expand All @@ -277,7 +293,7 @@ Gretty 1.1.0 brings one little incompatibility: property jettyEnvXml was renamed
- Upgraded to Jetty 9.2.1.v20140609. See [Jetty Release 9.2.0 announcement](http://dev.eclipse.org/mhonarc/lists/jetty-announce/msg00065.html)
and [Jetty 9.2.1.v20140609 release announcement](http://dev.eclipse.org/mhonarc/lists/jetty-announce/msg00066.html) for technical details
on new Jetty version.

- Upgraded to Spring Boot 1.1.1.RELEASE.

#### Version 0.0.24
Expand Down Expand Up @@ -399,4 +415,3 @@ Gretty 1.1.0 brings one little incompatibility: property jettyEnvXml was renamed
#### Version 0.0.4

- Implemented [hot deployment](http://akhikhl.github.io/gretty-doc/Hot-deployment.html).

4 changes: 2 additions & 2 deletions examples/extraResourceBases/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/farm/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/farmJacoco/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/farmSecure/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/filterWebapp/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/gretty-taglib-example/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/grettyLogging_logback/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/helloGretty/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/helloGrettyOverlay/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/helloJersey/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/jacocoExample/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/jacocoInstantiateTasks/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/multifarm/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/secureGretty/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/spring-boot-farm-secure/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/spring-boot-farm/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/spring-boot-simple/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/springBootWebSocket/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/testAnnotations/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/testAnnotationsOverlay/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
4 changes: 2 additions & 2 deletions examples/testDependency/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
2 changes: 1 addition & 1 deletion examples/testDuplicatingResources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'org.akhikhl.gretty:gretty:1.4.0-SNAPSHOT'
classpath 'org.akhikhl.gretty:gretty:1.4.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions examples/testDuplicatingResources/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=org.akhikhl.gretty.examples
version=1.4.0-SNAPSHOT
gretty_version=1.4.0-SNAPSHOT
version=1.4.0
gretty_version=1.4.0
groovy_version=2.4.5
logback_version=1.1.3
spock_version=1.0-groovy-2.4
Expand Down
Loading

0 comments on commit 7a2a637

Please sign in to comment.