pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.jnpf</groupId>
  8. <artifactId>jnpf-datareport-univer</artifactId>
  9. <version>6.0.0-RELEASE</version>
  10. </parent>
  11. <artifactId>jnpf-datareport-univer-entity</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.jnpf</groupId>
  15. <artifactId>jnpf-datareport-univer-common${jnpf.datareport.core.jdk.version}</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. </dependencies>
  19. <profiles>
  20. <profile>
  21. <!--JAR包加密-->
  22. <id>encrypted</id>
  23. <build>
  24. <plugins>
  25. <!--复制驱动包-->
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-dependency-plugin</artifactId>
  29. <executions>
  30. <execution>
  31. <id>copy-dependencies</id>
  32. <phase>clean</phase>
  33. <goals>
  34. <goal>copy-dependencies</goal>
  35. </goals>
  36. <configuration>
  37. <includeGroupIds>com.jnpf</includeGroupIds>
  38. <includeArtifactIds>jnpf-datareport-univer-model${jnpf.datareport.core.jdk.version}</includeArtifactIds>
  39. <outputDirectory>${project.build.directory}/copylib</outputDirectory>
  40. </configuration>
  41. </execution>
  42. </executions>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </profile>
  47. </profiles>
  48. </project>