pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>manage-root</artifactId>
  7. <groupId>cn.efunbox.manage</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>1.0.0-SNAPSHOT</version>
  12. <artifactId>manage-api</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.efunbox.manage</groupId>
  16. <artifactId>manage-common</artifactId>
  17. <version>1.0.0-SNAPSHOT</version>
  18. </dependency>
  19. </dependencies>
  20. <build>
  21. <plugins>
  22. <!--上传源码 -->
  23. <plugin>
  24. <artifactId>maven-source-plugin</artifactId>
  25. <version>2.4</version>
  26. <configuration>
  27. <attach>true</attach>
  28. </configuration>
  29. <executions>
  30. <execution>
  31. <phase>package</phase>
  32. <goals>
  33. <goal>jar-no-fork</goal>
  34. </goals>
  35. </execution>
  36. </executions>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>