|
28 | 28 | </resources>
|
29 | 29 | <plugins>
|
30 | 30 | <plugin>
|
| 31 | + <groupId>org.apache.maven.plugins</groupId> |
31 | 32 | <artifactId>maven-help-plugin</artifactId>
|
32 | 33 | <executions>
|
33 | 34 | <execution>
|
|
42 | 43 | </execution>
|
43 | 44 | </executions>
|
44 | 45 | </plugin>
|
| 46 | + <plugin> |
| 47 | + <groupId>org.codehaus.gmavenplus</groupId> |
| 48 | + <artifactId>gmavenplus-plugin</artifactId> |
| 49 | + <executions> |
| 50 | + <execution> |
| 51 | + <goals> |
| 52 | + <goal>execute</goal> |
| 53 | + </goals> |
| 54 | + <phase>generate-resources</phase> |
| 55 | + </execution> |
| 56 | + </executions> |
| 57 | + <configuration> |
| 58 | + <scripts> |
| 59 | + <script>file:///${project.basedir}/src/main/groovy/generateDependencyTreePom.groovy</script> |
| 60 | + </scripts> |
| 61 | + </configuration> |
| 62 | + <dependencies> |
| 63 | + <dependency> |
| 64 | + <groupId>org.codehaus.groovy</groupId> |
| 65 | + <artifactId>groovy-all</artifactId> |
| 66 | + <version>${groovy.version}</version> |
| 67 | + </dependency> |
| 68 | + </dependencies> |
| 69 | + </plugin> |
| 70 | + <plugin> |
| 71 | + <groupId>org.apache.maven.plugins</groupId> |
| 72 | + <artifactId>maven-invoker-plugin</artifactId> |
| 73 | + <executions> |
| 74 | + <execution> |
| 75 | + <id>generate-dependency-tree</id> |
| 76 | + <phase>generate-resources</phase> |
| 77 | + <goals> |
| 78 | + <goal>run</goal> |
| 79 | + </goals> |
| 80 | + <configuration> |
| 81 | + <cloneProjectsTo>${project.build.directory}/invoker</cloneProjectsTo> |
| 82 | + <settingsFile>src/dependency-tree/settings.xml</settingsFile> |
| 83 | + <streamLogs>true</streamLogs> |
| 84 | + <pom>${basedir}/src/dependency-tree/pom.xml</pom> |
| 85 | + </configuration> |
| 86 | + </execution> |
| 87 | + </executions> |
| 88 | + </plugin> |
45 | 89 | <plugin>
|
46 | 90 | <groupId>org.codehaus.mojo</groupId>
|
47 | 91 | <artifactId>xml-maven-plugin</artifactId>
|
|
89 | 133 | <file>${project.build.directory}/effective-pom/spring-boot-versions.xml</file>
|
90 | 134 | <type>effective-pom</type>
|
91 | 135 | </artifact>
|
| 136 | + <artifact> |
| 137 | + <file>${project.build.directory}/dependency-tree/dependency-tree.txt </file> |
| 138 | + <type>dependency-tree</type> |
| 139 | + </artifact> |
92 | 140 | </artifacts>
|
93 | 141 | </configuration>
|
94 | 142 | </execution>
|
95 | 143 | </executions>
|
96 | 144 | </plugin>
|
97 | 145 | </plugins>
|
98 | 146 | </build>
|
| 147 | + <dependencies> |
| 148 | + <dependency> |
| 149 | + <groupId>org.springframework.boot</groupId> |
| 150 | + <artifactId>spring-boot-starter</artifactId> |
| 151 | + </dependency> |
| 152 | + <dependency> |
| 153 | + <groupId>org.springframework.boot</groupId> |
| 154 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 155 | + </dependency> |
| 156 | + <dependency> |
| 157 | + <groupId>org.springframework.boot</groupId> |
| 158 | + <artifactId>spring-boot-starter-amqp</artifactId> |
| 159 | + </dependency> |
| 160 | + <dependency> |
| 161 | + <groupId>org.springframework.boot</groupId> |
| 162 | + <artifactId>spring-boot-starter-aop</artifactId> |
| 163 | + </dependency> |
| 164 | + <dependency> |
| 165 | + <groupId>org.springframework.boot</groupId> |
| 166 | + <artifactId>spring-boot-starter-batch</artifactId> |
| 167 | + </dependency> |
| 168 | + <dependency> |
| 169 | + <groupId>org.springframework.boot</groupId> |
| 170 | + <artifactId>spring-boot-starter-data-elasticsearch</artifactId> |
| 171 | + </dependency> |
| 172 | + <dependency> |
| 173 | + <groupId>org.springframework.boot</groupId> |
| 174 | + <artifactId>spring-boot-starter-data-gemfire</artifactId> |
| 175 | + </dependency> |
| 176 | + <dependency> |
| 177 | + <groupId>org.springframework.boot</groupId> |
| 178 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 179 | + </dependency> |
| 180 | + <dependency> |
| 181 | + <groupId>org.springframework.boot</groupId> |
| 182 | + <artifactId>spring-boot-starter-data-mongodb</artifactId> |
| 183 | + </dependency> |
| 184 | + <dependency> |
| 185 | + <groupId>org.springframework.boot</groupId> |
| 186 | + <artifactId>spring-boot-starter-data-rest</artifactId> |
| 187 | + </dependency> |
| 188 | + <dependency> |
| 189 | + <groupId>org.springframework.boot</groupId> |
| 190 | + <artifactId>spring-boot-starter-data-solr</artifactId> |
| 191 | + </dependency> |
| 192 | + <dependency> |
| 193 | + <groupId>org.springframework.boot</groupId> |
| 194 | + <artifactId>spring-boot-starter-freemarker</artifactId> |
| 195 | + </dependency> |
| 196 | + <dependency> |
| 197 | + <groupId>org.springframework.boot</groupId> |
| 198 | + <artifactId>spring-boot-starter-groovy-templates</artifactId> |
| 199 | + </dependency> |
| 200 | + <dependency> |
| 201 | + <groupId>org.springframework.boot</groupId> |
| 202 | + <artifactId>spring-boot-starter-hornetq</artifactId> |
| 203 | + </dependency> |
| 204 | + <dependency> |
| 205 | + <groupId>org.springframework.boot</groupId> |
| 206 | + <artifactId>spring-boot-starter-integration</artifactId> |
| 207 | + </dependency> |
| 208 | + <dependency> |
| 209 | + <groupId>org.springframework.boot</groupId> |
| 210 | + <artifactId>spring-boot-starter-jdbc</artifactId> |
| 211 | + </dependency> |
| 212 | + <dependency> |
| 213 | + <groupId>org.springframework.boot</groupId> |
| 214 | + <artifactId>spring-boot-starter-jetty</artifactId> |
| 215 | + </dependency> |
| 216 | + <dependency> |
| 217 | + <groupId>org.springframework.boot</groupId> |
| 218 | + <artifactId>spring-boot-starter-log4j</artifactId> |
| 219 | + </dependency> |
| 220 | + <dependency> |
| 221 | + <groupId>org.springframework.boot</groupId> |
| 222 | + <artifactId>spring-boot-starter-logging</artifactId> |
| 223 | + </dependency> |
| 224 | + <dependency> |
| 225 | + <groupId>org.springframework.boot</groupId> |
| 226 | + <artifactId>spring-boot-starter-mobile</artifactId> |
| 227 | + </dependency> |
| 228 | + <dependency> |
| 229 | + <groupId>org.springframework.boot</groupId> |
| 230 | + <artifactId>spring-boot-starter-redis</artifactId> |
| 231 | + </dependency> |
| 232 | + <dependency> |
| 233 | + <groupId>org.springframework.boot</groupId> |
| 234 | + <artifactId>spring-boot-starter-remote-shell</artifactId> |
| 235 | + </dependency> |
| 236 | + <dependency> |
| 237 | + <groupId>org.springframework.boot</groupId> |
| 238 | + <artifactId>spring-boot-starter-security</artifactId> |
| 239 | + </dependency> |
| 240 | + <dependency> |
| 241 | + <groupId>org.springframework.boot</groupId> |
| 242 | + <artifactId>spring-boot-starter-social-facebook</artifactId> |
| 243 | + </dependency> |
| 244 | + <dependency> |
| 245 | + <groupId>org.springframework.boot</groupId> |
| 246 | + <artifactId>spring-boot-starter-social-linkedin</artifactId> |
| 247 | + </dependency> |
| 248 | + <dependency> |
| 249 | + <groupId>org.springframework.boot</groupId> |
| 250 | + <artifactId>spring-boot-starter-social-twitter</artifactId> |
| 251 | + </dependency> |
| 252 | + <dependency> |
| 253 | + <groupId>org.springframework.boot</groupId> |
| 254 | + <artifactId>spring-boot-starter-test</artifactId> |
| 255 | + </dependency> |
| 256 | + <dependency> |
| 257 | + <groupId>org.springframework.boot</groupId> |
| 258 | + <artifactId>spring-boot-starter-thymeleaf</artifactId> |
| 259 | + </dependency> |
| 260 | + <dependency> |
| 261 | + <groupId>org.springframework.boot</groupId> |
| 262 | + <artifactId>spring-boot-starter-tomcat</artifactId> |
| 263 | + </dependency> |
| 264 | + <dependency> |
| 265 | + <groupId>org.springframework.boot</groupId> |
| 266 | + <artifactId>spring-boot-starter-velocity</artifactId> |
| 267 | + </dependency> |
| 268 | + <dependency> |
| 269 | + <groupId>org.springframework.boot</groupId> |
| 270 | + <artifactId>spring-boot-starter-web</artifactId> |
| 271 | + </dependency> |
| 272 | + <dependency> |
| 273 | + <groupId>org.springframework.boot</groupId> |
| 274 | + <artifactId>spring-boot-starter-websocket</artifactId> |
| 275 | + </dependency> |
| 276 | + </dependencies> |
99 | 277 | </project>
|
0 commit comments