Skip to content

Commit

Permalink
add comment&&add javadoc plugin&&sources plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
eduosi committed Mar 19, 2014
1 parent b9ec684 commit 53f9bcd
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 10 deletions.
38 changes: 37 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>velocity-support</artifactId>
<url>http://maven.apache.org</url>
<description>shiro permission velocity support</description>
<version>0.0.3</version>
<version>0.0.4</version>
<packaging>jar</packaging>

<organization>
Expand Down Expand Up @@ -60,6 +60,42 @@
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<show>private</show>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<show>private</show>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
</configuration>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* <http://www.apache.org/>.
*
* +------------------------------------------------------------------------------------------------+
* | License: License: https://mcrypt.buession.com.cn/LICENSE |
* | License: http://shiro-velocity-support.buession.com.cn/LICENSE |
* | Author: Yong.Teng <[email protected]> |
* | Copyright @ 2013-2014 Buession.com Inc. |
* +------------------------------------------------------------------------------------------------+
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,9 @@
* <http://www.apache.org/>.
*
* +------------------------------------------------------------------------------------------------+
* | License: License: https://mcrypt.buession.com.cn/LICENSE |
* | License: http://shiro-velocity-support.buession.com.cn/LICENSE |
* | Author: Yong.Teng <[email protected]> |
* | Copyright @ 2013-2014 Buession.com Inc. |
* +------------------------------------------------------------------------------------------------+
*/

/**
*
* Annotation support for Shiro Velocity Support pointcuts.
*
*/

package org.apache.shiro.web.support.velocity;

0 comments on commit 53f9bcd

Please sign in to comment.