Skip to content

Commit 573c065

Browse files
authored
Merge pull request #1341 from yegor256/up
New version in README
2 parents 9eb3383 + 915aa66 commit 573c065

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Watch these videos to learn more:
5151
[An Immutable Object-Oriented Web Framework][webcast] and
5252
[Takes, Java Web Framework, Intro](https://www.youtube.com/watch?v=nheD2LNYrpk).
5353
This
54-
[blog post](http://www.yegor256.com/2015/03/22/takes-java-web-framework.html)
54+
[blog post](http://www.yegor256.com/2015/03/22/takes-1.24.5-web-framework.html)
5555
may help you too.
5656

5757
## Contents
@@ -105,17 +105,17 @@ public final class App {
105105
}
106106
```
107107

108-
Then, download [`takes-0.0.0-jar-with-dependencies.jar`][jar]
108+
Then, download [`takes-1.24.5-jar-with-dependencies.jar`][jar]
109109
and compile your Java code:
110110

111111
```bash
112-
javac -cp takes-0.0.0-jar-with-dependencies.jar App.java
112+
javac -cp takes-1.24.5-jar-with-dependencies.jar App.java
113113
```
114114

115115
Now, run it like this:
116116

117117
```bash
118-
java -Dfile.encoding=UTF-8 -cp takes-0.0.0-jar-with-dependencies.jar:. App
118+
java -Dfile.encoding=UTF-8 -cp takes-1.24.5-jar-with-dependencies.jar:. App
119119
```
120120

121121
Should work :)
@@ -142,7 +142,7 @@ If you're using Maven, this is how your `pom.xml` should look like:
142142
<dependency>
143143
<groupId>org.takes</groupId>
144144
<artifactId>takes</artifactId>
145-
<version>0.0.0</version>
145+
<version>1.24.5</version>
146146
</dependency>
147147
</dependencies>
148148
<profiles>
@@ -153,7 +153,7 @@ If you're using Maven, this is how your `pom.xml` should look like:
153153
<plugin>
154154
<groupId>org.codehaus.mojo</groupId>
155155
<artifactId>exec-maven-plugin</artifactId>
156-
<version>1.3</version>
156+
<version>1.24.5</version>
157157
<executions>
158158
<execution>
159159
<id>start-server</id>
@@ -1106,7 +1106,7 @@ the `restfb` API in your project:
11061106
<dependency>
11071107
<groupId>com.restfb</groupId>
11081108
<artifactId>restfb</artifactId>
1109-
<version>1.15.0</version>
1109+
<version>1.24.5</version>
11101110
<scope>runtime</scope>
11111111
</dependency>
11121112
```
@@ -1180,14 +1180,14 @@ from [jcabi-parent](http://parent.jcabi.com).
11801180
[This article](http://www.yegor256.com/2015/02/05/jcabi-parent-maven-pom.html)
11811181
explains why it's done this way.
11821182

1183-
[jar]: https://repo1.maven.org/maven2/org/takes/takes/0.0.0/takes-0.0.0-jar-with-dependencies.jar
1183+
[jar]: https://repo1.maven.org/maven2/org/takes/takes/0.0.0/takes-1.24.5-jar-with-dependencies.jar
11841184
[oop]: http://www.yegor256.com/2014/11/20/seven-virtues-of-good-object.html
11851185
[immutable]: http://www.yegor256.com/2014/06/09/objects-should-be-immutable.html
11861186
[null]: http://www.yegor256.com/2014/05/13/why-null-is-bad.html
11871187
[utility]: http://www.yegor256.com/2014/05/05/oop-alternative-to-utility-classes.html
11881188
[casting]: http://www.yegor256.com/2015/04/02/class-casting-is-anti-pattern.html
11891189
[webcast]: https://www.youtube.com/watch?v=-Y4XS7ZtQ2g
11901190
[rultor-code]: https://github.com/yegor256/rultor/tree/master/src/test/java/com/rultor/web
1191-
[xsl]:http://www.yegor256.com/2015/06/25/xml-data-xsl-views-takes-framework.html
1191+
[xsl]:http://www.yegor256.com/2015/06/25/xml-data-xsl-views-takes-1.24.5
11921192
[cookies]: http://www.yegor256.com/2015/05/18/cookie-based-authentication.html
11931193
[rest-types]: http://thereisnorightway.blogspot.com/2011/02/versioning-and-types-in-resthttp-api.html

0 commit comments

Comments
 (0)