Skip to content

Commit 5716f14

Browse files
chore(DVIZ-53): add reporting configuration for dependency analysis in POM files
1 parent cd1242f commit 5716f14

6 files changed

Lines changed: 115 additions & 2 deletions

File tree

api-gateway/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,23 @@
6565
</plugins>
6666
</build>
6767

68+
<reporting>
69+
<plugins>
70+
<plugin>
71+
<groupId>org.apache.maven.plugins</groupId>
72+
<artifactId>maven-project-info-reports-plugin</artifactId>
73+
<reportSets>
74+
<reportSet>
75+
<reports>
76+
<report>dependencies</report>
77+
</reports>
78+
</reportSet>
79+
</reportSets>
80+
<configuration>
81+
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
82+
</configuration>
83+
</plugin>
84+
</plugins>
85+
</reporting>
86+
6887
</project>

api-security/pom.xml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<groupId>org.devgateway.viz</groupId>
66
<artifactId>api-security</artifactId>
77
<version>0.0.1-SNAPSHOT</version>
8-
<name>Zuul Service</name>
9-
<description>Zuul</description>
8+
<name>API Security</name>
9+
<description>API Security</description>
1010
<parent>
1111
<groupId>org.springframework.boot</groupId>
1212
<artifactId>spring-boot-starter-parent</artifactId>
@@ -122,5 +122,24 @@
122122
</plugins>
123123
</build>
124124

125+
<reporting>
126+
<plugins>
127+
<plugin>
128+
<groupId>org.apache.maven.plugins</groupId>
129+
<artifactId>maven-project-info-reports-plugin</artifactId>
130+
<reportSets>
131+
<reportSet>
132+
<reports>
133+
<report>dependencies</report>
134+
</reports>
135+
</reportSet>
136+
</reportSets>
137+
<configuration>
138+
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
139+
</configuration>
140+
</plugin>
141+
</plugins>
142+
</reporting>
143+
125144

126145
</project>

commons/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,23 @@
8282
<developerConnection>scm:git:https://github.com/devgateway/data-viz-api.git</developerConnection>
8383
<tag>parent-0.0.12</tag>
8484
</scm>
85+
86+
<reporting>
87+
<plugins>
88+
<plugin>
89+
<groupId>org.apache.maven.plugins</groupId>
90+
<artifactId>maven-project-info-reports-plugin</artifactId>
91+
<reportSets>
92+
<reportSet>
93+
<reports>
94+
<report>dependencies</report>
95+
</reports>
96+
</reportSet>
97+
</reportSets>
98+
<configuration>
99+
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
100+
</configuration>
101+
</plugin>
102+
</plugins>
103+
</reporting>
85104
</project>

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,4 +279,23 @@
279279
<developerConnection>scm:git:https://github.com/devgateway/data-viz-api.git</developerConnection>
280280
<tag>parent-0.0.12</tag>
281281
</scm>
282+
283+
<reporting>
284+
<plugins>
285+
<plugin>
286+
<groupId>org.apache.maven.plugins</groupId>
287+
<artifactId>maven-project-info-reports-plugin</artifactId>
288+
<reportSets>
289+
<reportSet>
290+
<reports>
291+
<report>dependencies</report>
292+
</reports>
293+
</reportSet>
294+
</reportSets>
295+
<configuration>
296+
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
297+
</configuration>
298+
</plugin>
299+
</plugins>
300+
</reporting>
282301
</project>

registry/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,23 @@
7272
</plugins>
7373
</build>
7474

75+
<reporting>
76+
<plugins>
77+
<plugin>
78+
<groupId>org.apache.maven.plugins</groupId>
79+
<artifactId>maven-project-info-reports-plugin</artifactId>
80+
<reportSets>
81+
<reportSet>
82+
<reports>
83+
<report>dependencies</report>
84+
</reports>
85+
</reportSet>
86+
</reportSets>
87+
<configuration>
88+
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
89+
</configuration>
90+
</plugin>
91+
</plugins>
92+
</reporting>
7593

7694
</project>

superset-proxy/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,23 @@
8686
</plugins>
8787
</build>
8888

89+
<reporting>
90+
<plugins>
91+
<plugin>
92+
<groupId>org.apache.maven.plugins</groupId>
93+
<artifactId>maven-project-info-reports-plugin</artifactId>
94+
<reportSets>
95+
<reportSet>
96+
<reports>
97+
<report>dependencies</report>
98+
</reports>
99+
</reportSet>
100+
</reportSets>
101+
<configuration>
102+
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
103+
</configuration>
104+
</plugin>
105+
</plugins>
106+
</reporting>
107+
89108
</project>

0 commit comments

Comments
 (0)