25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

117 lines
3.3 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.jeesite</groupId>
  7. <artifactId>jeesite-parent</artifactId>
  8. <version>4.0.4-SNAPSHOT</version>
  9. <relativePath>../parent/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>nowgo-web</artifactId>
  12. <packaging>war</packaging>
  13. <name>JeeSite Boot</name>
  14. <url>http://jeesite.com</url>
  15. <inceptionYear>2013-Now</inceptionYear>
  16. <properties>
  17. <start-class>com.lenovo.nowgo.web.Application</start-class>
  18. <!-- environment setting -->
  19. <java.version>1.8</java.version>
  20. <eclipse-plugin-download-sources>false</eclipse-plugin-download-sources>
  21. <eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs>
  22. </properties>
  23. <dependencies>
  24. <!-- Spring Boot -->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-tomcat</artifactId>
  28. <scope>provided</scope>
  29. </dependency>
  30. <!-- 核心模块 -->
  31. <dependency>
  32. <groupId>com.jeesite</groupId>
  33. <artifactId>jeesite-module-core</artifactId>
  34. <version>${project.parent.version}</version>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <finalName>${project.artifactId}</finalName>
  39. <outputDirectory>${project.basedir}/src/main/webapp/WEB-INF/classes/</outputDirectory>
  40. <plugins>
  41. <!-- Spring Boot -->
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. </plugin>
  46. <!-- Eclipse插件 -->
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-eclipse-plugin</artifactId>
  50. <configuration>
  51. <downloadSources>${eclipse-plugin-download-sources}</downloadSources>
  52. <downloadJavadocs>${eclipse-plugin-download-javadocs}</downloadJavadocs>
  53. <wtpContextName>${project.artifactId}</wtpContextName>
  54. <wtpversion>2.0</wtpversion>
  55. <jeeversion>6.0</jeeversion>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. <repositories>
  61. <repository>
  62. <id>aliyun-repos</id>
  63. <name>Aliyun Repository</name>
  64. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  65. <releases><enabled>true</enabled></releases>
  66. <snapshots><enabled>false</enabled></snapshots>
  67. </repository>
  68. <repository>
  69. <id>sonatype-repos</id>
  70. <name>Sonatype Repository</name>
  71. <url>https://oss.sonatype.org/content/groups/public</url>
  72. <releases><enabled>true</enabled></releases>
  73. <snapshots><enabled>false</enabled></snapshots>
  74. </repository>
  75. <repository>
  76. <id>sonatype-repos-s</id>
  77. <name>Sonatype Repository</name>
  78. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  79. <releases><enabled>false</enabled></releases>
  80. <snapshots><enabled>true</enabled></snapshots>
  81. </repository>
  82. </repositories>
  83. <pluginRepositories>
  84. <pluginRepository>
  85. <id>aliyun-repos</id>
  86. <name>Aliyun Repository</name>
  87. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  88. <releases><enabled>true</enabled></releases>
  89. <snapshots><enabled>false</enabled></snapshots>
  90. </pluginRepository>
  91. </pluginRepositories>
  92. </project>