|
64 | 64 | <maven.compiler.target>1.8</maven.compiler.target> |
65 | 65 | <maven.javadoc.failOnError>false</maven.javadoc.failOnError> |
66 | 66 |
|
67 | | - <guava.version>28.1-jre</guava.version> |
68 | | - <lombok.version>1.18.10</lombok.version> |
69 | | - <junit.version>4.12</junit.version> |
| 67 | + <guava.version>31.1-jre</guava.version> |
| 68 | + <lombok.version>1.18.26</lombok.version> |
| 69 | + <junit.version>4.13.2</junit.version> |
70 | 70 | </properties> |
71 | 71 |
|
72 | 72 | <dependencies> |
|
89 | 89 | </dependency> |
90 | 90 | </dependencies> |
91 | 91 |
|
| 92 | + <build> |
| 93 | + <plugins> |
| 94 | + <plugin> |
| 95 | + <groupId>org.apache.maven.plugins</groupId> |
| 96 | + <artifactId>maven-surefire-plugin</artifactId> |
| 97 | + <version>3.0.0-M9</version> |
| 98 | + </plugin> |
| 99 | + <plugin> |
| 100 | + <groupId>org.apache.maven.plugins</groupId> |
| 101 | + <artifactId>maven-source-plugin</artifactId> |
| 102 | + <version>3.2.1</version> |
| 103 | + <executions> |
| 104 | + <execution> |
| 105 | + <id>attach-sources</id> |
| 106 | + <goals> |
| 107 | + <goal>jar-no-fork</goal> |
| 108 | + </goals> |
| 109 | + </execution> |
| 110 | + </executions> |
| 111 | + </plugin> |
| 112 | + <plugin> |
| 113 | + <groupId>org.apache.maven.plugins</groupId> |
| 114 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 115 | + <version>3.4.1</version> |
| 116 | + <executions> |
| 117 | + <execution> |
| 118 | + <id>attach-javadocs</id> |
| 119 | + <goals> |
| 120 | + <goal>jar</goal> |
| 121 | + </goals> |
| 122 | + <configuration> |
| 123 | + <doclint>none</doclint> |
| 124 | + </configuration> |
| 125 | + </execution> |
| 126 | + </executions> |
| 127 | + </plugin> |
| 128 | + </plugins> |
| 129 | + </build> |
| 130 | + |
| 131 | + |
92 | 132 | <profiles> |
93 | 133 | <profile> |
94 | 134 | <id>release</id> |
|
97 | 137 | <plugin> |
98 | 138 | <groupId>org.sonatype.plugins</groupId> |
99 | 139 | <artifactId>nexus-staging-maven-plugin</artifactId> |
100 | | - <version>1.6.8</version> |
| 140 | + <version>1.6.13</version> |
101 | 141 | <extensions>true</extensions> |
102 | 142 | <configuration> |
103 | 143 | <serverId>ossrh</serverId> |
104 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 144 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
105 | 145 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
106 | 146 | </configuration> |
107 | 147 | </plugin> |
108 | 148 | <plugin> |
109 | 149 | <groupId>org.apache.maven.plugins</groupId> |
110 | 150 | <artifactId>maven-source-plugin</artifactId> |
111 | | - <version>3.0.1</version> |
| 151 | + <version>3.2.1</version> |
112 | 152 | <executions> |
113 | 153 | <execution> |
114 | 154 | <id>attach-sources</id> |
|
121 | 161 | <plugin> |
122 | 162 | <groupId>org.apache.maven.plugins</groupId> |
123 | 163 | <artifactId>maven-javadoc-plugin</artifactId> |
124 | | - <version>3.0.0</version> |
| 164 | + <version>3.4.1</version> |
125 | 165 | <executions> |
126 | 166 | <execution> |
127 | 167 | <id>attach-javadocs</id> |
128 | 168 | <goals> |
129 | 169 | <goal>jar</goal> |
130 | 170 | </goals> |
131 | | - <configuration> |
| 171 | + <configuration> <!-- add this to disable checking --> |
132 | 172 | <doclint>none</doclint> |
133 | 173 | </configuration> |
134 | 174 | </execution> |
|
137 | 177 | <plugin> |
138 | 178 | <groupId>org.apache.maven.plugins</groupId> |
139 | 179 | <artifactId>maven-gpg-plugin</artifactId> |
140 | | - <version>1.6</version> |
| 180 | + <version>3.0.1</version> |
141 | 181 | <executions> |
142 | 182 | <execution> |
143 | 183 | <id>sign-artifacts</id> |
|
0 commit comments