pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <parent>
  8. <groupId>net.o2oa</groupId>
  9. <artifactId>o2server</artifactId>
  10. <version>8.0</version>
  11. </parent>
  12. <artifactId>x_organization_core_express</artifactId>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>net.o2oa</groupId>
  17. <artifactId>x_base_core_project</artifactId>
  18. </dependency>
  19. </dependencies>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <artifactId>maven-resources-plugin</artifactId>
  24. <executions>
  25. <execution>
  26. <id>copy-jar</id>
  27. <phase>verify</phase>
  28. <goals>
  29. <goal>copy-resources</goal>
  30. </goals>
  31. <configuration>
  32. <outputDirectory>../store/jars</outputDirectory>
  33. <resources>
  34. <resource>
  35. <directory>target</directory>
  36. <includes>
  37. <include>${project.artifactId}.jar</include>
  38. </includes>
  39. </resource>
  40. </resources>
  41. </configuration>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. </project>