pom.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.sdtool</groupId>
  8. <artifactId>dySdDesigner</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>sdWebOne</artifactId>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.sdtool</groupId>
  20. <artifactId>sdWebCore</artifactId>
  21. <version>1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.sdtool</groupId>
  25. <artifactId>sdBusiness</artifactId>
  26. <version>1.0</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-jar-plugin</artifactId>
  34. <version>2.6</version>
  35. <configuration>
  36. <classesDirectory>target/classes</classesDirectory>
  37. <archive>
  38. <manifest>
  39. <mainClass>com.sdtool.webone.Bootstrap</mainClass>
  40. <addClasspath>true</addClasspath>
  41. <classpathPrefix>lib/</classpathPrefix>
  42. </manifest>
  43. </archive>
  44. </configuration>
  45. </plugin>
  46. <!-- <plugin>-->
  47. <!-- &lt;!&ndash; https://gitee.com/roseboy/classfinal &ndash;&gt;-->
  48. <!-- <groupId>net.roseboy</groupId>-->
  49. <!-- <artifactId>classfinal-maven-plugin</artifactId>-->
  50. <!-- <version>1.2.1</version>-->
  51. <!-- <configuration>-->
  52. <!-- <password>000000</password>&lt;!&ndash;加密打包之后pom.xml会被删除,不用担心在jar包里找到此密码&ndash;&gt;-->
  53. <!-- &lt;!&ndash; <packages>com.yourpackage,com.yourpackage2</packages>&ndash;&gt;-->
  54. <!-- &lt;!&ndash; <cfgfiles>application.yml</cfgfiles>&ndash;&gt;-->
  55. <!-- &lt;!&ndash; <excludes>org.spring</excludes>&ndash;&gt;-->
  56. <!-- <libjars>aeCommon-0.0.1.jar,aeBusiness-0.0.1.jar,aeWebCore-0.0.1.jar</libjars>-->
  57. <!-- <classpath>/lib</classpath>-->
  58. <!-- </configuration>-->
  59. <!-- <executions>-->
  60. <!-- <execution>-->
  61. <!-- <phase>package</phase>-->
  62. <!-- <goals>-->
  63. <!-- <goal>classFinal</goal>-->
  64. <!-- </goals>-->
  65. <!-- </execution>-->
  66. <!-- </executions>-->
  67. <!-- </plugin>-->
  68. </plugins>
  69. </build>
  70. </project>