blob: b09911144a36e7b053837df21ee7805c78a4131d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<%! String current = "libraries"; %>
<%@ include file="header.jsp" %>
<body>
<a name="top"/>
<div id="container">
<%@ include file="menu.jsp" %>
<div id="content">
<div id="main-col">
<h1>Third-party libraries</h1>
<p>Subsonic uses the following licensed third-party software libraries:</p>
<ul class="list">
<li>Spring Framework – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li>
<li>Acegi Security – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li>
<li>cglib – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li>
<li>Apache Commons – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li>
<li>HSQL – <a href="http://hsqldb.org/web/hsqlLicense.html">HSQL License</a></li>
<li>Radeox – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li>
<li>Log4j – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li>
<li>DWR – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li>
<li>Jaudiotagger – <a href="http://www.gnu.org/copyleft/lesser.txt">LGPL</a></li>
<li>JFreeChart – <a href="http://www.gnu.org/copyleft/lesser.txt">LGPL</a></li>
<li>JDOM – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li>
<li>Ehcache – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li>
<li>JLayer – <a href="http://www.gnu.org/copyleft/lesser.txt">LGPL</a></li>
<li>Jetty – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li>
<li>JGoodies – <a href="http://www.opensource.org/licenses/bsd-license.php">BSD</a></li>
</ul>
</div>
<div class="clear">
</div>
</div>
<hr/>
<%@ include file="footer.jsp" %>
</div>
</body>
</html>
|