pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.2.5</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.aip</groupId>
  12. <artifactId>AipGateway.API</artifactId>
  13. <version>0.0.1</version>
  14. <name>AipGateway.API</name>
  15. <description>Azure Information Protection API Gateway</description>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>17</java.version>
  20. <swagger.version>2.9.2</swagger.version>
  21. <org.projectlombok.version>1.18.20</org.projectlombok.version>
  22. <org.mapstruct.version>1.4.2.Final</org.mapstruct.version>
  23. <jackson.version>2.13.1</jackson.version>
  24. <start-class>com.aip.gateway.api.AipGatewayApiApplication</start-class>
  25. <maven.test.skip>true</maven.test.skip>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-quartz</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-validation</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.mybatis.spring.boot</groupId>
  42. <artifactId>mybatis-spring-boot-starter</artifactId>
  43. <version>3.0.3</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.microsoft.sqlserver</groupId>
  47. <artifactId>mssql-jdbc</artifactId>
  48. <scope>runtime</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-configuration-processor</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.projectlombok</groupId>
  57. <artifactId>lombok</artifactId>
  58. <optional>true</optional>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-test</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mybatis.spring.boot</groupId>
  67. <artifactId>mybatis-spring-boot-starter-test</artifactId>
  68. <version>3.0.3</version>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.github.ulisesbocchio</groupId>
  73. <artifactId>jasypt-spring-boot</artifactId>
  74. <version>3.0.4</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.microsoft.azure</groupId>
  78. <artifactId>msal4j</artifactId>
  79. <version>1.15.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.microsoft.azure</groupId>
  83. <artifactId>adal4j</artifactId>
  84. <version>1.6.4</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.microsoft.informationprotection</groupId>
  88. <artifactId>java-sdk-wrapper</artifactId>
  89. <version>1.14.128</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.google.guava</groupId>
  93. <artifactId>guava</artifactId>
  94. <version>33.1.0-jre</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>commons-io</groupId>
  98. <artifactId>commons-io</artifactId>
  99. <version>2.11.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springdoc</groupId>
  103. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  104. <version>2.0.4</version>
  105. </dependency>
  106. <!-- <dependency>-->
  107. <!-- <groupId>com.fasterxml.jackson.dataformat</groupId>-->
  108. <!-- <artifactId>jackson-dataformat-xml</artifactId>-->
  109. <!-- </dependency>-->
  110. <dependency>
  111. <groupId>io.swagger</groupId>
  112. <artifactId>swagger-annotations</artifactId>
  113. <version>1.5.20</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>io.springfox</groupId>
  117. <artifactId>springfox-swagger2</artifactId>
  118. <version>2.9.2</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.aspectj</groupId>
  122. <artifactId>aspectjweaver</artifactId>
  123. <version>1.9.22</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.azure</groupId>
  127. <artifactId>azure-core</artifactId>
  128. <version>1.49.0</version>
  129. </dependency>
  130. </dependencies>
  131. <build>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-maven-plugin</artifactId>
  136. <configuration>
  137. <excludes>
  138. <exclude>
  139. <groupId>org.projectlombok</groupId>
  140. <artifactId>lombok</artifactId>
  141. </exclude>
  142. </excludes>
  143. </configuration>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>