Skip to content

Commit

Permalink
added jetty plugin to shiro-basic example
Browse files Browse the repository at this point in the history
  • Loading branch information
sdutry committed Oct 15, 2017
1 parent 17d168b commit bb345cf
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion shiro-basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,20 @@

<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty-plugin.version}</version>
<configuration>
<webApp>
<contextPath>/${project.artifactId}</contextPath>
</webApp>
<stopKey>CTRL+C</stopKey>
<stopPort>8999</stopPort>
<scanIntervalSeconds>10</scanIntervalSeconds>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit bb345cf

Please sign in to comment.