Skip to content

Commit 3cd8160

Browse files
committed
Bump gradle versions
1 parent aabeebe commit 3cd8160

File tree

8 files changed

+24
-5
lines changed

8 files changed

+24
-5
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ It supports the generation of Java based servers with the following flavours sup
77

88
+ [Spring Boot/Spring MVC](https://spring.io/projects/spring-boot "Spring Boot")
99
+ [Undertow](http://undertow.io/ "Undertow")
10+
+ JAX-RS ([Jersey](https://eclipse-ee4j.github.io/jersey/), [Apache CFX](http://cxf.apache.org/))
1011

1112
## Building & Running
1213

1314
### Requirements
1415

15-
The build has been tested with [Oracle's JDK](http://www.oracle.com/technetwork/java/javase/downloads/index.html "JDK Downloads") (version 1.8)
16+
The build has been tested with [Zulu's OpenJDK](https://www.azul.com/downloads/zulu-community/?architecture=x86-64-bit&package=jdk "JDK Downloads") (version 11)
1617

1718
The build uses gradle to generate the artifacts. No installation is required as the project uses the
1819
[gradle wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html "gradle wrapper") setup.
@@ -27,6 +28,7 @@ The project is split into the following modules:
2728
|:------------------|:------------------------------------------------------|
2829
| `plugin` | The `protoc` plugin |
2930
| `runtime:core` | Core functionality required by generated code |
31+
| `runtime:jaxrs` | Runtime library for JAX-RS servers |
3032
| `runtime:spring` | Runtime library for Spring MVC/Boot servers |
3133
| `runtime:undertow`| Runtime library for Undertow servers |
3234

plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.1.0
1+
version=1.2.0

runtime/core/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.0.0
1+
version=1.2.0

runtime/jaxrs/build.gradle

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
group 'com.flit'
6+
archivesBaseName = 'flit-jaxrs-runtime'
7+
sourceCompatibility = 1.8
8+
9+
repositories {
10+
mavenCentral()
11+
}
12+
13+
dependencies {
14+
testCompile group: 'junit', name: 'junit', version: '4.12'
15+
}

runtime/jaxrs/gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
version=1.2.0

runtime/spring/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.0.0
1+
version=1.2.0

runtime/undertow/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.0.0
1+
version=1.2.0

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ include "plugin"
22
include 'runtime:core'
33
include 'runtime:spring'
44
include 'runtime:undertow'
5+
include 'runtime:jaxrs'
56

0 commit comments

Comments
 (0)