pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <parent>
  4. <artifactId>jnpf-datareport</artifactId>
  5. <groupId>com.jnpf</groupId>
  6. <version>6.0.0-RELEASE</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>ureport2-console</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.jnpf</groupId>
  13. <artifactId>ureport2-core</artifactId>
  14. <version>${project.version}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.jnpf</groupId>
  18. <artifactId>ureport2-font</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.jnpf</groupId>
  23. <artifactId>jnpf-common-security</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. </dependencies>
  27. <licenses>
  28. <license>
  29. <name>The Apache License, Version 2.0</name>
  30. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  31. </license>
  32. </licenses>
  33. <developers>
  34. <developer>
  35. <name>Gaojie</name>
  36. <email>@bstek.com</email>
  37. <organization>Bstek</organization>
  38. <organizationUrl>http://www.bstek.com</organizationUrl>
  39. </developer>
  40. </developers>
  41. <scm>
  42. <connection>https://github.com/youseries/ureport.git</connection>
  43. <developerConnection>https://github.com/youseries/ureport.git</developerConnection>
  44. <url>https://github.com/youseries/ureport</url>
  45. </scm>
  46. <organization>
  47. <name>Bstek</name>
  48. <url>http://www.bstek.com</url>
  49. </organization>
  50. <name>UReport2 Console Project</name>
  51. <url>https://github.com/youseries/ureport/tree/master/ureport2-console</url>
  52. <build>
  53. <finalName>jnpf-datareport-${project.version}</finalName>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. <configuration>
  59. <!-- 指定该Main Class为全局的唯一入口 -->
  60. <mainClass>com.bstek.ureport.console.DataReportApplication</mainClass>
  61. <layout>ZIP</layout>
  62. </configuration>
  63. <executions>
  64. <execution>
  65. <goals>
  66. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
  67. </goals>
  68. </execution>
  69. </executions>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>