Skip to content

Commit 8c907a3

Browse files
committed
v1.1.1
1 parent a004bc3 commit 8c907a3

File tree

180 files changed

+765
-380
lines changed

Some content is hidden

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

180 files changed

+765
-380
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
* **Simple, effective and easy to learn**. Ideal for small but also large scale applications.
2020

21-
* **Ready for modern web**, with the awesome and powerful [asset module](https://github.com/jooby-project/jooby/tree/master/jooby-assets)
21+
* **Ready for the modern web**, with the awesome and powerful [asset module](https://github.com/jooby-project/jooby/tree/master/jooby-assets)
2222

2323
## hello world!
2424

@@ -91,7 +91,7 @@ quickstart
9191
Just paste this into a terminal (make sure [Java 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) and [Maven 3.x](http://maven.apache.org/download.cgi) are installed):
9292

9393
```bash
94-
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=1.1.0
94+
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=1.1.1
9595
```
9696

9797
You might want to edit/change:
@@ -106,7 +106,7 @@ You might want to edit/change:
106106
Let's try it!:
107107

108108
```bash
109-
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=1.1.0
109+
mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion=1.1.1
110110
cd my-app
111111
mvn jooby:run
112112
```
@@ -125,15 +125,15 @@ listening on:
125125
http://0.0.0.0:8080/
126126
```
127127
128-
**Jooby**! is up and running!!!
128+
**Jooby**! is up and running!
129129
130130
getting started
131131
=====
132132
133133
exploring the newly created project
134134
-----
135135
136-
A new directory was created: ```my-app```. Now, let's see how it looks like:
136+
A new directory was created: ```my-app```. Let's see what it looks like:
137137
138138
```bash
139139
.
@@ -155,11 +155,11 @@ A new directory was created: ```my-app```. Now, let's see how it looks like:
155155
└── AppTest.java
156156
```
157157
158-
The **public** folder contains static files like ```*.html```, ```*.js```, ```*.css```, ..., ```*.png``` files.
158+
The **public** folder contains static content like ```*.html```, ```*.js```, ```*.css```, ..., ```*.png``` files.
159159
160160
The **conf** folder contains ```*.conf```.
161161
162-
The **src/main/java** folder contains ```*.java``` (of course) files.
162+
The **src/main/java** folder contains ```*.java``` files (of course).
163163
164164
The **src/test/java** folder contains unit and integration tests.
165165
@@ -189,7 +189,7 @@ public class App extends Jooby { // 1
189189
190190
Steps involved are:
191191
192-
1) extends Jooby
192+
1) extend Jooby
193193
194194
2) define some routes
195195
@@ -198,20 +198,20 @@ Steps involved are:
198198
running
199199
-----
200200
201-
Just open a console and type:
201+
Open a console and type:
202202
203203
mvn jooby:run
204204
205-
The maven plugin will compile the code (if necessary) and startup the application.
205+
The maven plugin will compile the code (if necessary) and start the application.
206206
207-
Of course, you can generate the IDE metadata from Maven and/or import as a Maven project in your favorite IDE.
208-
Then all you have to do is run the: ```App.java``` class. After all, this is plain Java application with a ```main``` method.
207+
Of course, you can generate the IDE metadata from Maven or import as a Maven project in your favorite IDE.
208+
Afterwards, all you have to do is run the: ```App.java``` class. After all, this is a plain Java application with a ```main``` method.
209209
210210
where to go now?
211211
-----
212212
213213
* read the [documentation](/doc)
214-
* checkout one of our [starter projects](https://github.com/search?q=topic%3Astarter+org%3Ajooby-project&type=Repositories)
214+
* check out one of the [starter projects](https://github.com/search?q=topic%3Astarter+org%3Ajooby-project&type=Repositories)
215215
216216
want to contribute?
217217
=====

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>jooby-project</artifactId>
8-
<version>1.1.1-SNAPSHOT</version>
8+
<version>1.1.1</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-akka/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak
1111
<dependency>
1212
<groupId>org.jooby</groupId>
1313
<artifactId>jooby-akka</artifactId>
14-
<version>1.1.0</version>
14+
<version>1.1.1</version>
1515
</dependency>
1616
```
1717

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>jooby-project</artifactId>
8-
<version>1.1.1-SNAPSHOT</version>
8+
<version>1.1.1</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

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>jooby-project</artifactId>
10-
<version>1.1.1-SNAPSHOT</version>
10+
<version>1.1.1</version>
1111
</parent>
1212

1313
<artifactId>jooby-archetype</artifactId>

jooby-assets-autoprefixer/README.md

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

33
<a href="https://github.com/postcss/postcss">PostCSS</a> plugin to parse CSS and add vendor prefixes to CSS rules using values from <a href="http://caniuse.com">Can I Use</a>. It is recommended by Google and used in Twitter, and Taobao.
44

5-
Make sure you already setup the [assets module](https://github.com/jooby-project/jooby/tree/master/jooby-assets) in your project!
5+
Make sure you've already set up the [assets module](https://github.com/jooby-project/jooby/tree/master/jooby-assets) in your project!
66

77
## dependency
88

99
```xml
1010
<dependency>
1111
<groupId>org.jooby</groupId>
1212
<artifactId>jooby-assets-auto-prefixer</artifactId>
13-
<version>1.1.0</version>
13+
<version>1.1.1</version>
1414
<scope>provided</scope>
1515
</dependency>
1616
```
@@ -111,6 +111,8 @@ For complete documentation about available options, please refer to the <a href=
111111

112112
* [babel](https://github.com/jooby-project/jooby/tree/master/jooby-assets-babel): Ecma6 now via <a href="http://babeljs.io/">Babel</a>.
113113

114+
* [react](https://github.com/jooby-project/jooby/tree/master/jooby-assets-react): <a href="https://facebook.github.io/react">React</a> support.
115+
114116
* [rollup](https://github.com/jooby-project/jooby/tree/master/jooby-assets-rollup): <a href="http://rollupjs.org/">rollup.js</a> the next-generation ES6 module bundler.
115117

116118
* [ng-annotate](https://github.com/jooby-project/jooby/tree/master/jooby-assets-ng-annotate): Add, remove and rebuild AngularJS dependency injection annotations.

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>jooby-project</artifactId>
8-
<version>1.1.1-SNAPSHOT</version>
8+
<version>1.1.1</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-assets-babel/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
<a href="http://babeljs.io/">Babel</a> is a JavaScript compiler with a set of ES2015 syntax transformers that allow you to use new syntax, right now without waiting for browser support.
44

5-
Make sure you already setup the [assets module](https://github.com/jooby-project/jooby/tree/master/jooby-assets) in your project!
5+
Make sure you've already set up the [assets module](https://github.com/jooby-project/jooby/tree/master/jooby-assets) in your project!
66

77
## dependency
88

99
```xml
1010
<dependency>
1111
<groupId>org.jooby</groupId>
1212
<artifactId>jooby-assets-babel</artifactId>
13-
<version>1.1.0</version>
13+
<version>1.1.1</version>
1414
<scope>provided</scope>
1515
</dependency>
1616
```
@@ -35,7 +35,7 @@ assets {
3535
<dependency>
3636
<groupId>org.jooby</groupId>
3737
<artifactId>jooby-assets-babel</artifactId>
38-
<version>1.1.0</version>
38+
<version>1.1.1</version>
3939
<scope>provided</scope>
4040
</dependency>
4141
```
@@ -55,7 +55,7 @@ assets {
5555
dev {
5656
sourceMaps: inline
5757
}
58-
blacklist: [react]
58+
presets: [es2015, react]
5959
}
6060
}
6161
```
@@ -94,6 +94,8 @@ assets {
9494

9595
* [babel](https://github.com/jooby-project/jooby/tree/master/jooby-assets-babel): Ecma6 now via <a href="http://babeljs.io/">Babel</a>.
9696

97+
* [react](https://github.com/jooby-project/jooby/tree/master/jooby-assets-react): <a href="https://facebook.github.io/react">React</a> support.
98+
9799
* [rollup](https://github.com/jooby-project/jooby/tree/master/jooby-assets-rollup): <a href="http://rollupjs.org/">rollup.js</a> the next-generation ES6 module bundler.
98100

99101
* [ng-annotate](https://github.com/jooby-project/jooby/tree/master/jooby-assets-ng-annotate): Add, remove and rebuild AngularJS dependency injection annotations.

jooby-assets-babel/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>jooby-project</artifactId>
8-
<version>1.1.1-SNAPSHOT</version>
8+
<version>1.1.1</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

jooby-assets-clean-css/README.md

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

33
A fast, efficient, and well tested CSS minifier, via: <a href="https://github.com/jakubpawlowicz/clean-css">clean-css</a>
44

5-
Make sure you already setup the [assets module](https://github.com/jooby-project/jooby/tree/master/jooby-assets) in your project!
5+
Make sure you've already set up the [assets module](https://github.com/jooby-project/jooby/tree/master/jooby-assets) in your project!
66

77
## dependency
88

99
```xml
1010
<dependency>
1111
<groupId>org.jooby</groupId>
1212
<artifactId>jooby-assets-clean-css</artifactId>
13-
<version>1.1.0</version>
13+
<version>1.1.1</version>
1414
<scope>provided</scope>
1515
</dependency>
1616
```
@@ -75,6 +75,8 @@ assets {
7575

7676
* [babel](https://github.com/jooby-project/jooby/tree/master/jooby-assets-babel): Ecma6 now via <a href="http://babeljs.io/">Babel</a>.
7777

78+
* [react](https://github.com/jooby-project/jooby/tree/master/jooby-assets-react): <a href="https://facebook.github.io/react">React</a> support.
79+
7880
* [rollup](https://github.com/jooby-project/jooby/tree/master/jooby-assets-rollup): <a href="http://rollupjs.org/">rollup.js</a> the next-generation ES6 module bundler.
7981

8082
* [ng-annotate](https://github.com/jooby-project/jooby/tree/master/jooby-assets-ng-annotate): Add, remove and rebuild AngularJS dependency injection annotations.

0 commit comments

Comments
 (0)