You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 795B

1234567891011121314151617181920212223242526
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>foo</groupId>
  5. <artifactId>foo</artifactId>
  6. <packaging>jar</packaging>
  7. <build>
  8. <plugins>
  9. <plugin>
  10. <groupId>org.apache.maven.plugins</groupId>
  11. <artifactId>maven-compiler-plugin</artifactId>
  12. <configuration>
  13. <source>1.5</source>
  14. <target>1.5</target>
  15. <encoding>Shift_JIS</encoding>
  16. </configuration>
  17. </plugin>
  18. </plugins>
  19. </build>
  20. <properties>
  21. <project.build.sourceEncoding>Shift_JIS</project.build.sourceEncoding>
  22. </properties>
  23. </project>