説明なし

pom.xml 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. <parent>
  5. <groupId>org.jfw</groupId>
  6. <artifactId>jFrameWork</artifactId>
  7. <version>0.0.2-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>jfwWebUtil</artifactId>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>javax.servlet</groupId>
  16. <artifactId>servlet-api</artifactId>
  17. <scope>provided</scope>
  18. <version>2.5</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.jfw</groupId>
  22. <artifactId>jfwUtil</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <groupId>org.apache.maven.plugins</groupId>
  30. <artifactId>maven-compiler-plugin</artifactId>
  31. <version>3.1</version>
  32. <configuration>
  33. <source>1.7</source>
  34. <target>1.7</target>
  35. <compilerArgument>-proc:none</compilerArgument>
  36. </configuration>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>