Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

...

custom css 를 사용할 수 있지만 skin 을 사용하는 것을 추천한다. skin 목록은 http://maven.apache.org/skins/ 에서 볼 수 있다. 개인적으로는 Twitter's Bootstrap 을 사용하는 maven-fluido-skin가 제일 깔끔해 보인다깔끔하고 다양한 기능을 제공하고 있어서 사용한다.

 

Creating a Site Descriptor

...

  1. -o 옵션으로 offline 모드로 구동

    Code Block
    mvn -o site-deploy
  2. reporting 항목의 maven-project-info-reports-plugin 에서 dependencyLocationsEnabled  를 false 로 설정

    Code Block
    languagexml
    titlepom.xml
    <reporting>
        <plugins>
     
    	<plugin>
    		<groupId>org.apache.maven.plugins</groupId>
    		<artifactId>maven-project-info-reports-plugin</artifactId>
    		<version>2.7</version>
     
    		<configuration>
    		  <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
    		</configuration>
    	</plugin>
     
        </plugins>
      </reporting>

     

참고 자료

...