lib/generators/app_generator/templates/pom.erb in vraptor-scaffold-0.0.1.beta4 vs lib/generators/app_generator/templates/pom.erb in vraptor-scaffold-0.0.1.beta5
- old
+ new
@@ -4,19 +4,24 @@
<groupId><%= @project_name %></groupId>
<artifactId><%= @project_name %></artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name><%= @project_name %></name>
-
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
+ <encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
@@ -30,15 +35,15 @@
<artifactId>maven-war-plugin</artifactId>
<version>2.0</version>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
+ <artifactId>jetty-maven-plugin</artifactId>
+ <version>7.1.6.v20100715</version>
<configuration>
- <scanIntervalSeconds>5</scanIntervalSeconds>
+ <scanIntervalSeconds>3</scanIntervalSeconds>
<stopKey>foo</stopKey>
<stopPort>9999</stopPort>
- <contextPath>/</contextPath>
</configuration>
</plugin>
</plugins>
</build>