pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <groupId>kasite</groupId>
  8. <version>1.0.0-RELEASES</version>
  9. <artifactId>com.intelmt.client.business.ui.home.medical.bed</artifactId>
  10. <name>com.intelmt.client.business.ui.home.medical.bed</name>
  11. <url>http://maven.apache.org</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-resources-plugin</artifactId>
  20. <version>2.6</version>
  21. <executions>
  22. <execution>
  23. <id>copy-dist</id>
  24. <phase>package</phase>
  25. <goals>
  26. <goal>copy-resources</goal>
  27. </goals>
  28. <configuration>
  29. <encoding>UTF-8</encoding>
  30. <outputDirectory>source/http/resources/module/backstage/home-medical-bed</outputDirectory>
  31. <resources>
  32. <resource>
  33. <directory>dist</directory>
  34. <includes>
  35. <include>**/*.*</include>
  36. </includes>
  37. </resource>
  38. </resources>
  39. </configuration>
  40. </execution>
  41. </executions>
  42. </plugin>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-source-plugin</artifactId>
  46. <configuration>
  47. <attach>true</attach>
  48. </configuration>
  49. <executions>
  50. <execution>
  51. <phase>compile</phase>
  52. <goals>
  53. <goal>jar</goal>
  54. </goals>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. <resources>
  60. <resource>
  61. <directory>source</directory>
  62. <includes>
  63. <include>**/*.*</include>
  64. </includes>
  65. <filtering>false</filtering>
  66. </resource>
  67. </resources>
  68. </build>
  69. <!-- 打包上传nexus路径 -->
  70. <distributionManagement>
  71. <repository>
  72. <id>nexus</id>
  73. <name>Releases</name>
  74. <url>http://maven.kasitesoft.com/repository/maven-releases</url>
  75. </repository>
  76. </distributionManagement>
  77. </project>