|
10 | 10 |
|
11 | 11 | <groupId>com.google.openlocationcode</groupId> |
12 | 12 | <artifactId>openlocationcode</artifactId> |
13 | | - <version>1.0.2</version> |
| 13 | + <version>1.0.4</version> |
14 | 14 | <packaging>jar</packaging> |
15 | 15 |
|
16 | 16 | <name>Open Location Code</name> |
|
88 | 88 | </configuration> |
89 | 89 | </plugin> |
90 | 90 | <plugin> |
91 | | - <groupId>com.diffplug.spotless</groupId> |
92 | | - <artifactId>spotless-maven-plugin</artifactId> |
93 | | - <version>1.23.0</version> |
| 91 | + <groupId>com.diffplug.spotless</groupId> |
| 92 | + <artifactId>spotless-maven-plugin</artifactId> |
| 93 | + <version>1.23.0</version> |
94 | 94 | <dependencies> |
95 | 95 | <dependency> |
96 | 96 | <groupId>com.google.googlejavaformat</groupId> |
|
111 | 111 | <trimTrailingWhitespace/> |
112 | 112 | </java> |
113 | 113 | </configuration> |
| 114 | + <executions> |
| 115 | + <execution> |
| 116 | + <id>spotless</id> |
| 117 | + <phase>compile</phase> |
| 118 | + <goals> |
| 119 | + <goal>check</goal> |
| 120 | + </goals> |
| 121 | + </execution> |
| 122 | + </executions> |
| 123 | + </plugin> |
| 124 | + <plugin> |
| 125 | + <groupId>org.apache.maven.plugins</groupId> |
| 126 | + <artifactId>maven-pmd-plugin</artifactId> |
| 127 | + <version>3.9.0</version> |
| 128 | + <configuration> |
| 129 | + <failOnViolation>true</failOnViolation> |
| 130 | + <printFailingErrors>true</printFailingErrors> |
| 131 | + <violationSeverity>warning</violationSeverity> |
| 132 | + </configuration> |
| 133 | + <executions> |
| 134 | + <execution> |
| 135 | + <id>pmd</id> |
| 136 | + <phase>compile</phase> |
| 137 | + <goals> |
| 138 | + <goal>check</goal> |
| 139 | + </goals> |
| 140 | + </execution> |
| 141 | + </executions> |
114 | 142 | </plugin> |
115 | 143 | </plugins> |
116 | 144 | </build> |
| 145 | + |
| 146 | + <reporting> |
| 147 | + <plugins> |
| 148 | + <plugin> |
| 149 | + <groupId>org.apache.maven.plugins</groupId> |
| 150 | + <artifactId>maven-jxr-plugin</artifactId> |
| 151 | + <version>2.3</version> |
| 152 | + </plugin> |
| 153 | + <plugin> |
| 154 | + <groupId>org.apache.maven.plugins</groupId> |
| 155 | + <artifactId>maven-pmd-plugin</artifactId> |
| 156 | + </plugin> |
| 157 | + <plugin> |
| 158 | + <groupId>com.diffplug.spotless</groupId> |
| 159 | + <artifactId>spotless-maven-plugin</artifactId> |
| 160 | + </plugin> |
| 161 | + </plugins> |
| 162 | + </reporting> |
117 | 163 |
|
118 | 164 | <distributionManagement> |
119 | 165 | <snapshotRepository> |
|
0 commit comments