|
33 | 33 | <maven.compiler.target>11</maven.compiler.target> |
34 | 34 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
35 | 35 |
|
36 | | - <bouncy.castle.version>1.69</bouncy.castle.version> |
| 36 | + <bouncy.castle.version>1.70</bouncy.castle.version> |
37 | 37 |
|
38 | 38 | <sonar.host.url>https://sonarcloud.io/</sonar.host.url> |
39 | 39 | <sonar.organization>nbaars-github</sonar.organization> |
|
45 | 45 | <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath> |
46 | 46 |
|
47 | 47 | <paseto4j.deploy.skip>false</paseto4j.deploy.skip> |
48 | | - <jnr-ffi.version>2.1.8</jnr-ffi.version> |
49 | 48 | <tuweni.version>2.0.0</tuweni.version> |
50 | 49 | <junit.version>5.2.0</junit.version> |
51 | | - <guava.version>30.0-jre</guava.version> |
52 | 50 | </properties> |
53 | 51 |
|
54 | 52 | <profiles> |
|
62 | 60 | <plugin> |
63 | 61 | <groupId>org.apache.maven.plugins</groupId> |
64 | 62 | <artifactId>maven-source-plugin</artifactId> |
65 | | - <version>2.2.1</version> |
| 63 | + <version>3.2.1</version> |
66 | 64 | <executions> |
67 | 65 | <execution> |
68 | 66 | <id>attach-sources</id> |
|
75 | 73 | <plugin> |
76 | 74 | <groupId>org.apache.maven.plugins</groupId> |
77 | 75 | <artifactId>maven-javadoc-plugin</artifactId> |
78 | | - <version>2.9.1</version> |
| 76 | + <version>3.4.1</version> |
79 | 77 | <executions> |
80 | 78 | <execution> |
81 | 79 | <id>attach-javadocs</id> |
|
88 | 86 | <plugin> |
89 | 87 | <groupId>org.apache.maven.plugins</groupId> |
90 | 88 | <artifactId>maven-gpg-plugin</artifactId> |
91 | | - <version>1.5</version> |
| 89 | + <version>3.0.1</version> |
92 | 90 | <executions> |
93 | 91 | <execution> |
94 | 92 | <id>sign-artifacts</id> |
|
108 | 106 | <plugin> |
109 | 107 | <groupId>org.apache.maven.plugins</groupId> |
110 | 108 | <artifactId>maven-deploy-plugin</artifactId> |
111 | | - <version>3.0.0-M1</version> |
| 109 | + <version>3.0.0</version> |
112 | 110 | <configuration> |
113 | 111 | <skip>${paseto4j.deploy.skip}</skip> |
114 | 112 | </configuration> |
|
150 | 148 | <version>${junit.version}</version> |
151 | 149 | <scope>test</scope> |
152 | 150 | </dependency> |
153 | | - <dependency> |
154 | | - <groupId>org.junit.jupiter</groupId> |
155 | | - <artifactId>junit-jupiter-engine</artifactId> |
156 | | - <version>${junit.version}</version> |
157 | | - <scope>test</scope> |
158 | | - </dependency> |
159 | | - <dependency> |
160 | | - <groupId>com.google.guava</groupId> |
161 | | - <artifactId>guava</artifactId> |
162 | | - <version>${guava.version}</version> |
163 | | - <scope>test</scope> |
164 | | - </dependency> |
165 | 151 | </dependencies> |
166 | 152 |
|
167 | 153 | <build> |
168 | 154 | <plugins> |
| 155 | + <plugin> |
| 156 | + <groupId>org.apache.maven.plugins</groupId> |
| 157 | + <artifactId>maven-dependency-plugin</artifactId> |
| 158 | + <executions> |
| 159 | + <execution> |
| 160 | + <id>analyze</id> |
| 161 | + <goals> |
| 162 | + <goal>analyze-only</goal> |
| 163 | + </goals> |
| 164 | + <configuration> |
| 165 | + <ignoreNonCompile>true</ignoreNonCompile> |
| 166 | + <failOnWarning>true</failOnWarning> |
| 167 | + </configuration> |
| 168 | + </execution> |
| 169 | + </executions> |
| 170 | + <version>3.3.0</version> |
| 171 | + </plugin> |
| 172 | + <plugin> |
| 173 | + <groupId>org.apache.maven.plugins</groupId> |
| 174 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 175 | + <version>3.1.0</version> |
| 176 | + <executions> |
| 177 | + <execution> |
| 178 | + <id>analyze</id> |
| 179 | + <goals> |
| 180 | + <goal>enforce</goal> |
| 181 | + </goals> |
| 182 | + <configuration> |
| 183 | + <rules> |
| 184 | + <requireReleaseDeps> |
| 185 | + <message>No Snapshots Allowed!</message> |
| 186 | + <onlyWhenRelease>true</onlyWhenRelease> |
| 187 | + </requireReleaseDeps> |
| 188 | + <requireMavenVersion> |
| 189 | + <version>[3.8.6,)</version> |
| 190 | + </requireMavenVersion> |
| 191 | + <requireJavaVersion> |
| 192 | + <version>[11,)</version> |
| 193 | + </requireJavaVersion> |
| 194 | + </rules> |
| 195 | + </configuration> |
| 196 | + </execution> |
| 197 | + </executions> |
| 198 | + </plugin> |
169 | 199 | <plugin> |
170 | 200 | <groupId>org.apache.maven.plugins</groupId> |
171 | 201 | <artifactId>maven-compiler-plugin</artifactId> |
|
0 commit comments