pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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>2.2.6.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>cn.seecoder</groupId>
  12. <artifactId>seecoder-ksh</artifactId>
  13. <version>0.0.1</version>
  14. <name>seecoder-ksh</name>
  15. <description>Demo project for Visualization on callgraph and commits</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-tomcat</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-aop</artifactId>
  40. <version>RELEASE</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-mail</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. <version>1.18.2</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <scope>runtime</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>javax</groupId>
  59. <artifactId>javaee-api</artifactId>
  60. <version>8.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>fastjson</artifactId>
  65. <version>1.2.30</version>
  66. </dependency>
  67. <!--wala dependency-->
  68. <dependency>
  69. <groupId>com.ibm.wala</groupId>
  70. <artifactId>com.ibm.wala.util</artifactId>
  71. <version>1.5.5</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.ibm.wala</groupId>
  75. <artifactId>com.ibm.wala.shrike</artifactId>
  76. <version>1.5.5</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.ibm.wala</groupId>
  80. <artifactId>com.ibm.wala.core</artifactId>
  81. <version>1.5.5</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.ibm.wala</groupId>
  85. <artifactId>com.ibm.wala.cast</artifactId>
  86. <version>1.5.5</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.ibm.wala</groupId>
  90. <artifactId>com.ibm.wala.dalvik</artifactId>
  91. <version>1.5.5</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.ibm.wala</groupId>
  95. <artifactId>com.ibm.wala.cast.java</artifactId>
  96. <version>1.5.5</version>
  97. </dependency>
  98. <!--<dependency>-->
  99. <!--<groupId>org.codehaus.mojo</groupId>-->
  100. <!--<artifactId>javancss-maven-plugin</artifactId>-->
  101. <!--<version>2.1</version>-->
  102. <!--</dependency>-->
  103. <dependency>
  104. <groupId>net.sourceforge.pmd</groupId>
  105. <artifactId>pmd-java</artifactId>
  106. <version>6.24.0</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.maven.shared</groupId>
  110. <artifactId>maven-invoker</artifactId>
  111. <version>2.0.11</version>
  112. </dependency>
  113. <!--<dependency>-->
  114. <!--<groupId>pmd</groupId>-->
  115. <!--<artifactId>pmd</artifactId>-->
  116. <!--<version>4.3</version>-->
  117. <!--</dependency>-->
  118. <!--<dependency>-->
  119. <!--<groupId>checkstyle</groupId>-->
  120. <!--<artifactId>checkstyle</artifactId>-->
  121. <!--<version>5.0</version>-->
  122. <!--</dependency>-->
  123. </dependencies>
  124. <build>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-maven-plugin</artifactId>
  129. </plugin>
  130. <!--<plugin>-->
  131. <!--<groupId>org.apache.maven.plugins</groupId>-->
  132. <!--<artifactId>maven-checkstyle-plugin</artifactId>-->
  133. <!--<version>3.1.1</version>-->
  134. <!--</plugin>-->
  135. </plugins>
  136. </build>
  137. <distributionManagement>
  138. <repository>
  139. <id>nexus</id>
  140. <url>${nexus.repo}</url>
  141. </repository>
  142. </distributionManagement>
  143. </project>