Skip to content

Commit 9158d4d

Browse files
committed
v1.3.0
1 parent da40b4e commit 9158d4d

File tree

179 files changed

+1774
-1073
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+1774
-1073
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby)
2-
[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.2.3)
2+
[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.3.0)
33
[![Build Status](https://travis-ci.org/jooby-project/jooby.svg?branch=master)](https://travis-ci.org/jooby-project/jooby)
44
[![coveralls.io](https://img.shields.io/coveralls/jooby-project/jooby.svg)](https://coveralls.io/r/jooby-project/jooby?branch=master)
55
[![codecov.io](https://codecov.io/gh/jooby-project/jooby/branch/master/graph/badge.svg)](https://codecov.io/gh/jooby-project/jooby)

jooby/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.jooby</groupId>
88
<artifactId>jooby-project</artifactId>
9-
<version>1.2.4-SNAPSHOT</version>
9+
<version>1.3.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/coverage-report/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jooby</groupId>
77
<artifactId>modules</artifactId>
8-
<version>1.2.4-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

modules/jooby-akka/README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-akka/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-akka)
2-
[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.2.3)
2+
[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.3.0)
33
[![jooby-akka website](https://img.shields.io/badge/jooby-akka-brightgreen.svg)](http://jooby.org/doc/akka)
44
# akka
55

@@ -15,7 +15,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak
1515
<dependency>
1616
<groupId>org.jooby</groupId>
1717
<artifactId>jooby-akka</artifactId>
18-
<version>1.2.3</version>
18+
<version>1.3.0</version>
1919
</dependency>
2020
```
2121

@@ -37,3 +37,18 @@ Small module to build concurrent & distributed applications via [Akka](http://ak
3737
That's all folks!
3838
3939
Happy coding!!!
40+
41+
## akka.conf
42+
These are the default properties for akka:
43+
44+
```properties
45+
akka {
46+
47+
loggers = ["akka.event.slf4j.Slf4jLogger"]
48+
49+
# Options: ERROR, WARNING, INFO, DEBUG
50+
51+
loglevel = "INFO"
52+
53+
}
54+
```

modules/jooby-akka/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jooby</groupId>
77
<artifactId>modules</artifactId>
8-
<version>1.2.4-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

modules/jooby-apitool/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-apitool/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-apitool)
2-
[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.2.3)
2+
[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.3.0)
33
[![jooby-apitool website](https://img.shields.io/badge/jooby-apitool-brightgreen.svg)](http://jooby.org/doc/apitool)
44
# API tool
55

@@ -23,7 +23,7 @@ This module generates live documentation from your HTTP API.
2323
<dependency>
2424
<groupId>org.jooby</groupId>
2525
<artifactId>jooby-apitool</artifactId>
26-
<version>1.2.3</version>
26+
<version>1.3.0</version>
2727
</dependency>
2828
```
2929

@@ -163,7 +163,7 @@ Go to ```build.gradle``` and add these lines:
163163
```gradke
164164
buildscript {
165165
dependencies {
166-
classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.2.3'
166+
classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.3.0'
167167
}
168168
}
169169
apply plugin: 'jooby'

modules/jooby-apitool/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.jooby</groupId>
88
<artifactId>modules</artifactId>
9-
<version>1.2.4-SNAPSHOT</version>
9+
<version>1.3.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

modules/jooby-archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.jooby</groupId>
99
<artifactId>modules</artifactId>
10-
<version>1.2.4-SNAPSHOT</version>
10+
<version>1.3.0</version>
1111
</parent>
1212

1313
<artifactId>jooby-archetype</artifactId>

modules/jooby-assets-autoprefixer/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-autoprefixer/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-autoprefixer)
2-
[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.2.3)
2+
[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.3.0)
33
[![jooby-assets-autoprefixer website](https://img.shields.io/badge/jooby-assets-autoprefixer-brightgreen.svg)](http://jooby.org/doc/assets-autoprefixer)
44
# auto-prefixer
55

@@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro
1313
<dependency>
1414
<groupId>org.jooby</groupId>
1515
<artifactId>jooby-assets-auto-prefixer</artifactId>
16-
<version>1.2.3</version>
16+
<version>1.3.0</version>
1717
<scope>provided</scope>
1818
</dependency>
1919
```

modules/jooby-assets-autoprefixer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jooby</groupId>
77
<artifactId>modules</artifactId>
8-
<version>1.2.4-SNAPSHOT</version>
8+
<version>1.3.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)