diff options
author | Brett Porter <brett@apache.org> | 2006-07-21 13:49:13 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2006-07-21 13:49:13 +0000 |
commit | 972ed22374035f37fcc7f58948172508e9bd5459 (patch) | |
tree | d45b0639306f196a8dc63e512a15516412f624ac | |
parent | 6fe39949dfe6f482e1fdee8c0c574155190e930c (diff) | |
download | archiva-972ed22374035f37fcc7f58948172508e9bd5459.tar.gz archiva-972ed22374035f37fcc7f58948172508e9bd5459.zip |
tweaks
git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@424319 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | maven-repository-webapp/src/main/webapp/WEB-INF/jsp/decorators/default.jsp | 8 | ||||
-rw-r--r-- | pom.xml | 14 |
2 files changed, 13 insertions, 9 deletions
diff --git a/maven-repository-webapp/src/main/webapp/WEB-INF/jsp/decorators/default.jsp b/maven-repository-webapp/src/main/webapp/WEB-INF/jsp/decorators/default.jsp index c3fdd86e1..638b19bd5 100644 --- a/maven-repository-webapp/src/main/webapp/WEB-INF/jsp/decorators/default.jsp +++ b/maven-repository-webapp/src/main/webapp/WEB-INF/jsp/decorators/default.jsp @@ -20,7 +20,9 @@ <%@ taglib prefix="my" tagdir="/WEB-INF/tags" %> <html> <head> - <title>Maven Repository Manager :: <decorator:title default="Maven Repository Manager" /></title> + <title>Maven Repository Manager :: + <decorator:title default="Maven Repository Manager" /> + </title> <style type="text/css" media="all"> @import url( "<%= request.getContextPath() %>/css/maven-base.css" ); @@ -34,7 +36,9 @@ <body onload="<decorator:getProperty property="body.onload" />" class="composite"> <div id="banner"> <span id="bannerLeft"> - <img src="http://www.apache.org/images/asf_logo_wide.gif" alt="" width="537" height="51" /> + <%-- + <img src="http://www.apache.org/images/asf_logo_wide.gif" alt="" width="537" height="51" /> + --%> </span> <span id="bannerRight"> <!-- img src="..." alt="" /> --> @@ -89,17 +89,17 @@ </execution> </executions> </plugin> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.4</source> + <target>1.4</target> + </configuration> + </plugin> </plugins> <pluginManagement> <plugins> <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.4</source> - <target>1.4</target> - </configuration> - </plugin> - <plugin> <artifactId>maven-idea-plugin</artifactId> <configuration> <jdkLevel>1.4</jdkLevel> |