package org.fkjava.mavenqs; /** * Hello world! * */ public class App { public static void main( String[] args ) { System.out.println( "Hello World!" ); } }
<%-- 网站: <a href="http://www.crazyit.org">疯狂Java联盟</a> author yeeku.H.lee kongyeeku@163.com version 1.0 Copyright (C), 2001-2016, yeeku.H.Lee This program is protected by copyright laws. Program Name: Date: --%> <%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %> <%@ page import="javax.naming.*,java.sql.*,javax.sql.*" %> <!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"> <head> <title>测试Tomcat数据源</title> </head> <body> <% // 初始化Context,使用InitialContext初始化Context Context ctx=new InitialContext(); /* 通过JNDI查找数据源,该JNDI为java:comp/env/jdbc/dstest,分成两个部分 java:comp/env是Tomcat固定的,Tomcat提供的JNDI绑定都必须加该前缀 jdbc/dstest是定义数据源时的数据源名 */ DataSource ds=(DataSource)ctx.lookup("java:comp/env/jdbc/dstest"); // 获取数据库连接 Connection conn=ds.getConnection(); // 获取Statement Statement stmt=conn.createStatement(); // 执行查询,返回ResulteSet对象 ResultSet rs=stmt.executeQuery("select * from news_inf"); while(rs.next()) { out.println(rs.getString(1) + " " + rs.getString(2) + "<br/>"); } %> </body> </html>
<%-- 网站: <a href="http://www.crazyit.org">疯狂Java联盟</a> author yeeku.H.lee kongyeeku@163.com version 1.0 Copyright (C), 2001-2016, yeeku.H.Lee This program is protected by copyright laws. Program Name: Date: --%> <%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %> <!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"> <head> <title>JSP页面</title> </head> <body> 欢迎你! </body> </html>
<?xml version="1.0" encoding="GBK"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1"> </web-app>
package org.fkjava.mavenqs; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Unit test for simple App. */ public class AppTest extends TestCase { /** * Create the test case * * @param testName name of the test case */ public AppTest( String testName ) { super( testName ); } /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite( AppTest.class ); } /** * Rigourous Test :-) */ public void testApp() { assertTrue( true ); } }
body { margin: 0px; padding: 0px; } img { border:none; } table { padding:0px; 100%; margin-left: -2px; margin-right: -2px; } acronym { cursor: help; border-bottom: 1px dotted #feb; } table.bodyTable th, table.bodyTable td { padding: 2px 4px 2px 4px; vertical-align: top; } div.clear{ clear:both; visibility: hidden; } div.clear hr{ display: none; } #bannerLeft, #bannerRight { font-size: xx-large; font-weight: bold; } #bannerLeft img, #bannerRight img { margin: 0px; } .xleft, #bannerLeft img { float:left; } .xright, #bannerRight { float:right; } #banner { padding: 0px; } #banner img { border: none; } #breadcrumbs { padding: 3px 10px 3px 10px; } #leftColumn { 170px; float:left; overflow: auto; } #bodyColumn { margin-right: 1.5em; margin-left: 197px; } #legend { padding: 8px 0 8px 0; } #navcolumn { padding: 8px 4px 0 8px; } #navcolumn h5 { margin: 0; padding: 0; font-size: small; } #navcolumn ul { margin: 0; padding: 0; font-size: small; } #navcolumn li { list-style-type: none; background-image: none; background-repeat: no-repeat; background-position: 0 0.4em; padding-left: 16px; list-style-position: outside; line-height: 1.2em; font-size: smaller; } #navcolumn li.expanded { background-image: url(../images/expanded.gif); } #navcolumn li.collapsed { background-image: url(../images/collapsed.gif); } #navcolumn li.none { text-indent: -1em; margin-left: 1em; } #poweredBy { text-align: center; } #navcolumn img { margin-top: 10px; margin-bottom: 3px; } #poweredBy img { display:block; margin: 20px 0 20px 17px; } #search img { margin: 0px; display: block; } #search #q, #search #btnG { border: 1px solid #999; margin-bottom:10px; } #search form { margin: 0px; } #lastPublished { font-size: x-small; } .navSection { margin-bottom: 2px; padding: 8px; } .navSectionHead { font-weight: bold; font-size: x-small; } .section { padding: 4px; } #footer { padding: 3px 10px 3px 10px; font-size: x-small; } #breadcrumbs { font-size: x-small; margin: 0pt; } .source { padding: 12px; margin: 1em 7px 1em 7px; } .source pre { margin: 0px; padding: 0px; } #navcolumn img.imageLink, .imageLink { padding-left: 0px; padding-bottom: 0px; padding-top: 0px; padding-right: 2px; border: 0px; margin: 0px; }
body { padding: 0px 0px 10px 0px; } body, td, select, input, li{ font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 13px; } code{ font-family: Courier, monospace; font-size: 13px; } a { text-decoration: none; } a:link { color:#36a; } a:visited { color:#47a; } a:active, a:hover { color:#69c; } #legend li.externalLink { background: url(../images/external.png) left top no-repeat; padding-left: 18px; } a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover { background: url(../images/external.png) right center no-repeat; padding-right: 18px; } #legend li.newWindow { background: url(../images/newwindow.png) left top no-repeat; padding-left: 18px; } a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover { background: url(../images/newwindow.png) right center no-repeat; padding-right: 18px; } h2 { padding: 4px 4px 4px 6px; border: 1px solid #999; color: #900; background-color: #ddd; font-weight:900; font-size: x-large; } h3 { padding: 4px 4px 4px 6px; border: 1px solid #aaa; color: #900; background-color: #eee; font-weight: normal; font-size: large; } h4 { padding: 4px 4px 4px 6px; border: 1px solid #bbb; color: #900; background-color: #fff; font-weight: normal; font-size: large; } h5 { padding: 4px 4px 4px 6px; color: #900; font-size: normal; } p { line-height: 1.3em; font-size: small; } #breadcrumbs { border-top: 1px solid #aaa; border-bottom: 1px solid #aaa; background-color: #ccc; } #leftColumn { margin: 10px 0 0 5px; border: 1px solid #999; background-color: #eee; } #navcolumn h5 { font-size: smaller; border-bottom: 1px solid #aaaaaa; padding-top: 2px; color: #000; } table.bodyTable th { color: white; background-color: #bbb; text-align: left; font-weight: bold; } table.bodyTable th, table.bodyTable td { font-size: 1em; } table.bodyTable tr.a { background-color: #ddd; } table.bodyTable tr.b { background-color: #eee; } .source { border: 1px solid #999; } dl { padding: 4px 4px 4px 6px; border: 1px solid #aaa; background-color: #ffc; } dt { color: #900; } #organizationLogo img, #projectLogo img, #projectLogo span{ margin: 8px; } #banner { border-bottom: 1px solid #fff; } .errormark, .warningmark, .donemark, .infomark { background: url(../images/icon_error_sml.gif) no-repeat; } .warningmark { background-image: url(../images/icon_warning_sml.gif); } .donemark { background-image: url(../images/icon_success_sml.gif); } .infomark { background-image: url(../images/icon_info_sml.gif); }
#banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn { display: none !important; } #bodyColumn, body.docs div.docs { margin: 0 !important; border: none !important }
/* You can override this file with your own styles */
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2014-06-15 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>mavenQs - Project Dependencies</title> <style type="text/css" media="all"> @import url("./css/maven-base.css"); @import url("./css/maven-theme.css"); @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> <meta name="Date-Revision-yyyymmdd" content="20140615" /> <meta http-equiv="Content-Language" content="en" /> </head> <body class="composite"> <div id="banner"> <div id="bannerLeft"> mavenQs </div> <div class="clear"> <hr/> </div> </div> <div id="breadcrumbs"> <div class="xleft"> <span id="publishDate">Last Published: 2014-06-15</span> | <span id="projectVersion">Version: 1.0-SNAPSHOT</span> </div> <div class="xright"> <a href="./" title="mavenQs">mavenQs</a> </div> <div class="clear"> <hr/> </div> </div> <div id="leftColumn"> <div id="navcolumn"> <h5>Project Documentation</h5> <ul> <li class="expanded"> <a href="project-info.html" title="Project Information">Project Information</a> <ul> <li class="none"> <a href="index.html" title="About">About</a> </li> <li class="none"> <a href="plugin-management.html" title="Plugin Management">Plugin Management</a> </li> <li class="none"> <a href="distribution-management.html" title="Distribution Management">Distribution Management</a> </li> <li class="none"> <a href="dependency-info.html" title="Dependency Information">Dependency Information</a> </li> <li class="none"> <a href="source-repository.html" title="Source Repository">Source Repository</a> </li> <li class="none"> <a href="mail-lists.html" title="Mailing Lists">Mailing Lists</a> </li> <li class="none"> <a href="issue-tracking.html" title="Issue Tracking">Issue Tracking</a> </li> <li class="none"> <a href="integration.html" title="Continuous Integration">Continuous Integration</a> </li> <li class="none"> <a href="plugins.html" title="Project Plugins">Project Plugins</a> </li> <li class="none"> <a href="license.html" title="Project License">Project License</a> </li> <li class="none"> <a href="team-list.html" title="Project Team">Project Team</a> </li> <li class="none"> <a href="project-summary.html" title="Project Summary">Project Summary</a> </li> <li class="none"> <strong>Dependencies</strong> </li> </ul> </li> </ul> <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /> </a> </div> </div> <div id="bodyColumn"> <div id="contentBox"> <a name="Project_Dependencies"></a> <div class="section"> <h2>Project Dependencies<a name="Project_Dependencies"></a></h2><a name="Project_Dependencies_test"></a> <div class="section"> <h3>test<a name="test"></a></h3> <p>The following is a list of test dependencies for this project. These dependencies are only required to compile and run unit tests for the application:</p> <table border="0" class="bodyTable"> <tr class="a"> <th>GroupId</th> <th>ArtifactId</th> <th>Version</th> <th>Type</th> <th>License</th></tr> <tr class="b"> <td>junit</td> <td><a class="externalLink" href="http://junit.org">junit</a></td> <td>3.8.1</td> <td>jar</td> <td><a class="externalLink" href="http://www.opensource.org/licenses/cpl1.0.txt">Common Public License Version 1.0</a></td></tr></table></div></div><a name="Project_Transitive_Dependencies"></a> <div class="section"> <h2>Project Transitive Dependencies<a name="Project_Transitive_Dependencies"></a></h2> <p>No transitive dependencies are required for this project.</p></div><a name="Project_Dependency_Graph"></a> <div class="section"> <h2>Project Dependency Graph<a name="Project_Dependency_Graph"></a></h2><script language="javascript" type="text/javascript"> function toggleDependencyDetail( divId, imgId ) { var div = document.getElementById( divId ); var img = document.getElementById( imgId ); if( div.style.display == '' ) { div.style.display = 'none'; img.src='./images/icon_info_sml.gif'; } else { div.style.display = ''; img.src='./images/close.gif'; } } </script> <a name="Dependency_Tree"></a> <div class="section"> <h3>Dependency Tree<a name="Dependency_Tree"></a></h3> <ul> <li>org.fkjava:mavenQs:jar:1.0-SNAPSHOT <img id="_img1" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep0', '_img1' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep0" style="display:none"> <table border="0" class="bodyTable"> <tr class="a"> <th>mavenQs</th></tr> <tr class="b"> <td> <p><b>Description: </b>There is currently no description associated with this project.</p> <p><b>URL: </b><a class="externalLink" href="http://maven.apache.org">http://maven.apache.org</a></p> <p><b>Project License: </b>No license is defined for this project.</p></td></tr></table></div> <ul> <li>junit:junit:jar:3.8.1 (test) <img id="_img3" src="./images/icon_info_sml.gif" alt="Information" onclick="toggleDependencyDetail( '_dep2', '_img3' );" style="cursor: pointer;vertical-align:text-bottom;"></img><div id="_dep2" style="display:none"> <table border="0" class="bodyTable"> <tr class="a"> <th>JUnit</th></tr> <tr class="b"> <td> <p><b>Description: </b>JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.</p> <p><b>URL: </b><a class="externalLink" href="http://junit.org">http://junit.org</a></p> <p><b>Project License: </b><a class="externalLink" href="http://www.opensource.org/licenses/cpl1.0.txt">Common Public License Version 1.0</a></p></td></tr></table></div></li></ul></li></ul></div></div><a name="Licenses"></a> <div class="section"> <h2>Licenses<a name="Licenses"></a></h2> <p><b>Unknown: </b>mavenQs</p> <p><b>Common Public License Version 1.0: </b>JUnit</p></div><a name="Dependency_File_Details"></a> <div class="section"> <h2>Dependency File Details<a name="Dependency_File_Details"></a></h2> <table border="0" class="bodyTable"> <tr class="a"> <th>Filename</th> <th>Size</th> <th>Entries</th> <th>Classes</th> <th>Packages</th> <th>JDK Rev</th> <th>Debug</th></tr> <tr class="b"> <td>junit-3.8.1.jar</td> <td>118.23 kB</td> <td>119</td> <td>100</td> <td>6</td> <td>1.1</td> <td>debug</td></tr> <tr class="a"> <th>Total</th> <th>Size</th> <th>Entries</th> <th>Classes</th> <th>Packages</th> <th>JDK Rev</th> <th>Debug</th></tr> <tr class="b"> <td>1</td> <td>118.23 kB</td> <td>119</td> <td>100</td> <td>6</td> <td>1.1</td> <td>1</td></tr> <tr class="a"> <td>test: 1</td> <td>test: 118.23 kB</td> <td>test: 119</td> <td>test: 100</td> <td>test: 6</td> <td>-</td> <td>test: 1</td></tr></table></div><a name="Dependency_Repository_Locations"></a> <div class="section"> <h2>Dependency Repository Locations<a name="Dependency_Repository_Locations"></a></h2> <table border="0" class="bodyTable"> <tr class="a"> <th>Repo ID</th> <th>URL</th> <th>Release</th> <th>Snapshot</th></tr> <tr class="b"> <td>central</td> <td><a class="externalLink" href="http://repo.maven.apache.org/maven2">http://repo.maven.apache.org/maven2</a></td> <td>Yes</td> <td>-</td></tr></table> <p>Repository locations for each of the Dependencies.</p> <table border="0" class="bodyTable"> <tr class="a"> <th>Artifact</th> <th>central</th></tr> <tr class="b"> <td>junit:junit:jar:3.8.1</td> <td><a class="externalLink" href="http://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar"><img alt="Found at http://repo.maven.apache.org/maven2" src="images/icon_success_sml.gif" /></a></td></tr> <tr class="a"> <th>Total</th> <th>central</th></tr> <tr class="b"> <td>1 (test: 1)</td> <td>1</td></tr></table></div> </div> </div> <div class="clear"> <hr/> </div> <div id="footer"> <div class="xright"> Copyright © 2014. All Rights Reserved. </div> <div class="clear"> <hr/> </div> </div> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2014-06-15 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>mavenQs - Dependency Information</title> <style type="text/css" media="all"> @import url("./css/maven-base.css"); @import url("./css/maven-theme.css"); @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> <meta name="Date-Revision-yyyymmdd" content="20140615" /> <meta http-equiv="Content-Language" content="en" /> </head> <body class="composite"> <div id="banner"> <div id="bannerLeft"> mavenQs </div> <div class="clear"> <hr/> </div> </div> <div id="breadcrumbs"> <div class="xleft"> <span id="publishDate">Last Published: 2014-06-15</span> | <span id="projectVersion">Version: 1.0-SNAPSHOT</span> </div> <div class="xright"> <a href="./" title="mavenQs">mavenQs</a> </div> <div class="clear"> <hr/> </div> </div> <div id="leftColumn"> <div id="navcolumn"> <h5>Project Documentation</h5> <ul> <li class="expanded"> <a href="project-info.html" title="Project Information">Project Information</a> <ul> <li class="none"> <a href="index.html" title="About">About</a> </li> <li class="none"> <a href="plugin-management.html" title="Plugin Management">Plugin Management</a> </li> <li class="none"> <a href="distribution-management.html" title="Distribution Management">Distribution Management</a> </li> <li class="none"> <strong>Dependency Information</strong> </li> <li class="none"> <a href="source-repository.html" title="Source Repository">Source Repository</a> </li> <li class="none"> <a href="mail-lists.html" title="Mailing Lists">Mailing Lists</a> </li> <li class="none"> <a href="issue-tracking.html" title="Issue Tracking">Issue Tracking</a> </li> <li class="none"> <a href="integration.html" title="Continuous Integration">Continuous Integration</a> </li> <li class="none"> <a href="plugins.html" title="Project Plugins">Project Plugins</a> </li> <li class="none"> <a href="license.html" title="Project License">Project License</a> </li> <li class="none"> <a href="team-list.html" title="Project Team">Project Team</a> </li> <li class="none"> <a href="project-summary.html" title="Project Summary">Project Summary</a> </li> <li class="none"> <a href="dependencies.html" title="Dependencies">Dependencies</a> </li> </ul> </li> </ul> <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /> </a> </div> </div> <div id="bodyColumn"> <div id="contentBox"> <div class="section"> <h2>Dependency Information<a name="Dependency_Information"></a></h2><a name="Dependency_Information"></a> <div class="section"> <h3>Apache Maven<a name="Apache_Maven"></a></h3><a name="Apache_Maven"></a> <div class="source"> <pre><dependency> <groupId>org.fkjava</groupId> <artifactId>mavenQs</artifactId> <version>1.0-SNAPSHOT</version> </dependency></pre></div></div> <div class="section"> <h3>Apache Buildr<a name="Apache_Buildr"></a></h3><a name="Apache_Buildr"></a> <div class="source"> <pre>'org.fkjava:mavenQs:jar:1.0-SNAPSHOT'</pre></div></div> <div class="section"> <h3>Apache Ant<a name="Apache_Ant"></a></h3><a name="Apache_Ant"></a> <div class="source"> <pre><dependency org="org.fkjava" name="mavenQs" rev="1.0-SNAPSHOT"> <artifact name="mavenQs" type="jar" /> </dependency></pre></div></div> <div class="section"> <h3>Groovy Grape<a name="Groovy_Grape"></a></h3><a name="Groovy_Grape"></a> <div class="source"> <pre>@Grapes( @Grab(group='org.fkjava', module='mavenQs', version='1.0-SNAPSHOT') )</pre></div></div> <div class="section"> <h3>Grails<a name="Grails"></a></h3><a name="Grails"></a> <div class="source"> <pre>compile 'org.fkjava:mavenQs:1.0-SNAPSHOT'</pre></div></div> <div class="section"> <h3>Leiningen<a name="Leiningen"></a></h3><a name="Leiningen"></a> <div class="source"> <pre>[org.fkjava/mavenQs "1.0-SNAPSHOT"]</pre></div></div> <div class="section"> <h3>SBT<a name="SBT"></a></h3><a name="SBT"></a> <div class="source"> <pre>libraryDependencies += "org.fkjava" %% "mavenQs" % "1.0-SNAPSHOT"</pre></div></div></div> </div> </div> <div class="clear"> <hr/> </div> <div id="footer"> <div class="xright"> Copyright © 2014. All Rights Reserved. </div> <div class="clear"> <hr/> </div> </div> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2014-06-15 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>mavenQs - Project Distribution Management</title> <style type="text/css" media="all"> @import url("./css/maven-base.css"); @import url("./css/maven-theme.css"); @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> <meta name="Date-Revision-yyyymmdd" content="20140615" /> <meta http-equiv="Content-Language" content="en" /> </head> <body class="composite"> <div id="banner"> <div id="bannerLeft"> mavenQs </div> <div class="clear"> <hr/> </div> </div> <div id="breadcrumbs"> <div class="xleft"> <span id="publishDate">Last Published: 2014-06-15</span> | <span id="projectVersion">Version: 1.0-SNAPSHOT</span> </div> <div class="xright"> <a href="./" title="mavenQs">mavenQs</a> </div> <div class="clear"> <hr/> </div> </div> <div id="leftColumn"> <div id="navcolumn"> <h5>Project Documentation</h5> <ul> <li class="expanded"> <a href="project-info.html" title="Project Information">Project Information</a> <ul> <li class="none"> <a href="index.html" title="About">About</a> </li> <li class="none"> <a href="plugin-management.html" title="Plugin Management">Plugin Management</a> </li> <li class="none"> <strong>Distribution Management</strong> </li> <li class="none"> <a href="dependency-info.html" title="Dependency Information">Dependency Information</a> </li> <li class="none"> <a href="source-repository.html" title="Source Repository">Source Repository</a> </li> <li class="none"> <a href="mail-lists.html" title="Mailing Lists">Mailing Lists</a> </li> <li class="none"> <a href="issue-tracking.html" title="Issue Tracking">Issue Tracking</a> </li> <li class="none"> <a href="integration.html" title="Continuous Integration">Continuous Integration</a> </li> <li class="none"> <a href="plugins.html" title="Project Plugins">Project Plugins</a> </li> <li class="none"> <a href="license.html" title="Project License">Project License</a> </li> <li class="none"> <a href="team-list.html" title="Project Team">Project Team</a> </li> <li class="none"> <a href="project-summary.html" title="Project Summary">Project Summary</a> </li> <li class="none"> <a href="dependencies.html" title="Dependencies">Dependencies</a> </li> </ul> </li> </ul> <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /> </a> </div> </div> <div id="bodyColumn"> <div id="contentBox"> <div class="section"> <h2>Overview<a name="Overview"></a></h2><a name="Overview"></a> <p>No distribution management is defined for this project.</p></div> </div> </div> <div class="clear"> <hr/> </div> <div id="footer"> <div class="xright"> Copyright © 2014. All Rights Reserved. </div> <div class="clear"> <hr/> </div> </div> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2014-06-15 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>mavenQs - About</title> <style type="text/css" media="all"> @import url("./css/maven-base.css"); @import url("./css/maven-theme.css"); @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> <meta name="Date-Revision-yyyymmdd" content="20140615" /> <meta http-equiv="Content-Language" content="en" /> </head> <body class="composite"> <div id="banner"> <div id="bannerLeft"> mavenQs </div> <div class="clear"> <hr/> </div> </div> <div id="breadcrumbs"> <div class="xleft"> <span id="publishDate">Last Published: 2014-06-15</span> | <span id="projectVersion">Version: 1.0-SNAPSHOT</span> </div> <div class="xright"> <a href="./" title="mavenQs">mavenQs</a> </div> <div class="clear"> <hr/> </div> </div> <div id="leftColumn"> <div id="navcolumn"> <h5>Project Documentation</h5> <ul> <li class="expanded"> <a href="project-info.html" title="Project Information">Project Information</a> <ul> <li class="none"> <strong>About</strong> </li> <li class="none"> <a href="plugin-management.html" title="Plugin Management">Plugin Management</a> </li> <li class="none"> <a href="distribution-management.html" title="Distribution Management">Distribution Management</a> </li> <li class="none"> <a href="dependency-info.html" title="Dependency Information">Dependency Information</a> </li> <li class="none"> <a href="source-repository.html" title="Source Repository">Source Repository</a> </li> <li class="none"> <a href="mail-lists.html" title="Mailing Lists">Mailing Lists</a> </li> <li class="none"> <a href="issue-tracking.html" title="Issue Tracking">Issue Tracking</a> </li> <li class="none"> <a href="integration.html" title="Continuous Integration">Continuous Integration</a> </li> <li class="none"> <a href="plugins.html" title="Project Plugins">Project Plugins</a> </li> <li class="none"> <a href="license.html" title="Project License">Project License</a> </li> <li class="none"> <a href="team-list.html" title="Project Team">Project Team</a> </li> <li class="none"> <a href="project-summary.html" title="Project Summary">Project Summary</a> </li> <li class="none"> <a href="dependencies.html" title="Dependencies">Dependencies</a> </li> </ul> </li> </ul> <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /> </a> </div> </div> <div id="bodyColumn"> <div id="contentBox"> <div class="section"> <h2>About mavenQs<a name="About_mavenQs"></a></h2><a name="About_mavenQs"></a> <p>There is currently no description associated with this project.</p></div> </div> </div> <div class="clear"> <hr/> </div> <div id="footer"> <div class="xright"> Copyright © 2014. All Rights Reserved. </div> <div class="clear"> <hr/> </div> </div> </body> </html>