pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>io.jpress</groupId>
  8. <artifactId>jpress</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>jpress-addon-helloworld</artifactId>
  12. <name>jpress-addon-helloworld</name>
  13. <url>http://jpress.io</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.jpress</groupId>
  25. <artifactId>jpress-commons</artifactId>
  26. <version>1.0</version>
  27. <type>jar</type>
  28. <scope>compile</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.jfinal</groupId>
  32. <artifactId>jfinal</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.jpress</groupId>
  36. <artifactId>jpress-model</artifactId>
  37. <version>1.0</version>
  38. <type>jar</type>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.jpress</groupId>
  43. <artifactId>jpress-web-core</artifactId>
  44. <version>1.0</version>
  45. <type>jar</type>
  46. <classifier>classes</classifier>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>javax.servlet-api</artifactId>
  52. <scope>provided</scope>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-jar-plugin</artifactId>
  60. <configuration>
  61. <archive>
  62. <manifestFile>
  63. src/main/resources/META-INF/MANIFEST.MF
  64. </manifestFile>
  65. <manifest>
  66. <addClasspath>true</addClasspath>
  67. </manifest>
  68. </archive>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>