Skip to content

Commit c02cc66

Browse files
committed
Merge branch 'master' of github.com:Red5/red5-server
2 parents 2ef021f + de02f40 commit c02cc66

File tree

1 file changed

+32
-9
lines changed

1 file changed

+32
-9
lines changed

README.md

Lines changed: 32 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ Automatic builds (Courtesy of Apache / OpenMeetings):
2929
* [Windows Installer](https://builds.apache.org/view/M-R/view/OpenMeetings/job/red5-installer/)
3030

3131
# Releases
32-
Current version is *1.0.6-RELEASE*
32+
Stable release version is [1.0.6-RELEASE](https://github.com/Red5/red5-server/releases/tag/v1.0.6-RELEASE)
3333

34-
## Latest
35-
[Latest Releases](https://github.com/Red5/red5-server/releases/latest)
34+
Pre-release version is [1.0.7-M8](https://github.com/Red5/red5-server/releases/tag/v1.0.7-M8)
35+
36+
[Releases](https://github.com/Red5/red5-server/releases/latest)
3637
----------------
3738
### Red5 1.0.6 Release (8 September 2015)
3839
[Tarball & ZIP](https://github.com/Red5/red5-server/releases/tag/v1.0.6-RELEASE)
@@ -48,16 +49,38 @@ Current version is *1.0.6-RELEASE*
4849

4950
<i>Note on Bootstrap</i>
5051

51-
The bootstrap and shutdown classes have been moved to the red5-service project; the dependency has been added to this projects pom.
52+
The bootstrap and shutdown classes have been moved to the [red5-service](https://github.com/Red5/red5-service) project; the dependency has been added to this projects pom.
5253

5354
# StackOverflow
54-
If you want answers from a broader audience, Stack Overflow may be your best bet.
55-
http://stackoverflow.com/tags/red5/info
55+
If you want answers from a broader audience, [Stack Overflow](http://stackoverflow.com/tags/red5/info) may be your best bet.
5656

5757
# Maven
58-
Releases are available at https://oss.sonatype.org/content/repositories/releases/org/red5/
59-
60-
Snapshots are available at https://oss.sonatype.org/content/repositories/snapshots/org/red5/
58+
Releases are available at [Sonatype - Releases](https://oss.sonatype.org/content/repositories/releases/org/red5/)
59+
60+
Snapshots are available at [Sonatype - Snapshots](https://oss.sonatype.org/content/repositories/snapshots/org/red5/)
61+
62+
Include the red5-parent in your __pom.xml__ in the __dependencyManagement__ section
63+
```xml
64+
<dependencyManagement>
65+
<dependencies>
66+
<dependency>
67+
<groupId>org.red5</groupId>
68+
<artifactId>red5-parent</artifactId>
69+
<version>${red5.version}</version>
70+
<type>pom</type>
71+
</dependency>
72+
</dependencies>
73+
</dependencyManagement>
74+
```
75+
in addition to any other Red5 projects in the __dependencies__ section
76+
```xml
77+
<dependency>
78+
<groupId>org.red5</groupId>
79+
<artifactId>red5-server</artifactId>
80+
<version>${red5.version}</version>
81+
<type>jar</type>
82+
</dependency>
83+
```
6184

6285
## Build from Source
6386

0 commit comments

Comments
 (0)