pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <modules>
  7. <module>class-winter-core</module>
  8. <module>class-winter-maven-plugin</module>
  9. </modules>
  10. <groupId>com.idea-aedi</groupId>
  11. <artifactId>class-winter</artifactId>
  12. <version>enhance-2.8.5</version>
  13. <!-- 配置项目的基础信息 -->
  14. <name>class-winter</name>
  15. <url>https://gitee.com/JustryDeng/class-winter</url>
  16. <description>Obfuscate encryption .class file</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <maven.compiler.source>1.8</maven.compiler.source>
  20. <maven.compiler.target>1.8</maven.compiler.target>
  21. <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  22. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. </properties>
  26. <!-- <distributionManagement>-->
  27. <!-- <repository>-->
  28. <!-- <id>aliyun-nexus-jd</id>-->
  29. <!-- <url>http://47.105.39.189:8081/repository/maven-releases/</url>-->
  30. <!-- </repository>-->
  31. <!-- <snapshotRepository>-->
  32. <!-- <id>aliyun-nexus-jd</id>-->
  33. <!-- <url>http://47.105.39.189:8081/repository/maven-snapshots/</url>-->
  34. <!-- </snapshotRepository>-->
  35. <!-- </distributionManagement>-->
  36. <build>
  37. <plugins>
  38. <!-- 打包源码 -->
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-source-plugin</artifactId>
  42. <version>3.1.0</version>
  43. <executions>
  44. <execution>
  45. <id>attach-sources</id>
  46. <goals>
  47. <goal>jar-no-fork</goal>
  48. </goals>
  49. </execution>
  50. </executions>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>