|
5 | 5 | <groupId>org.nameapi.client</groupId> |
6 | 6 | <artifactId>nameapi-client</artifactId> |
7 | 7 | <name>nameapi-client</name> |
8 | | - <version>5.4.2</version> |
| 8 | + <version>6.0.0</version> |
9 | 9 |
|
10 | 10 | <url>https://github.com/optimaize/nameapi-client-java</url> |
11 | 11 | <description> |
|
39 | 39 |
|
40 | 40 | <properties> |
41 | 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
42 | | - <java.version>1.8</java.version> |
43 | | - <anythingworks.version>1.1.0</anythingworks.version> |
44 | | - <ontology.version>5.4.2</ontology.version> |
| 42 | + <java.version>17</java.version> |
| 43 | + <anythingworks.version>2.1.0</anythingworks.version> |
| 44 | + <ontology.version>5.8.0</ontology.version> |
45 | 45 | <swagger-annotations-version>1.5.4</swagger-annotations-version> |
46 | | - <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> |
47 | 46 | <repo-base-url>https://repo1.maven.org</repo-base-url> |
48 | 47 | </properties> |
49 | 48 |
|
|
78 | 77 | <plugin> |
79 | 78 | <groupId>org.apache.maven.plugins</groupId> |
80 | 79 | <artifactId>maven-compiler-plugin</artifactId> |
81 | | - <version>3.5.1</version> |
| 80 | + <version>3.11.0</version> |
82 | 81 | <configuration> |
83 | 82 | <source>${java.version}</source> |
84 | 83 | <target>${java.version}</target> |
|
88 | 87 | <plugin> |
89 | 88 | <groupId>org.apache.maven.plugins</groupId> |
90 | 89 | <artifactId>maven-source-plugin</artifactId> |
91 | | - <version>3.0.0</version> |
| 90 | + <version>3.3.0</version> |
92 | 91 | <executions> |
93 | 92 | <execution> |
94 | 93 | <id>attach-sources</id> |
|
104 | 103 | <plugin> |
105 | 104 | <groupId>org.apache.maven.plugins</groupId> |
106 | 105 | <artifactId>maven-javadoc-plugin</artifactId> |
107 | | - <version>2.9.1</version> |
| 106 | + <version>3.6.0</version> |
| 107 | + <configuration> |
| 108 | + <doclint>none</doclint> |
| 109 | + </configuration> |
108 | 110 | <executions> |
109 | 111 | <execution> |
110 | 112 | <id>attach-javadoc</id> |
|
119 | 121 | <plugin> |
120 | 122 | <groupId>org.apache.maven.plugins</groupId> |
121 | 123 | <artifactId>maven-release-plugin</artifactId> |
122 | | - <version>2.4.1</version> |
| 124 | + <version>3.0.1</version> |
123 | 125 | <configuration> |
124 | 126 | <!-- Automated passphrase entry: --> |
125 | 127 |
|
|
137 | 139 | <mavenExecutorId>forked-path</mavenExecutorId> |
138 | 140 | </configuration> |
139 | 141 | </plugin> |
| 142 | + |
| 143 | + <plugin> |
| 144 | + <groupId>org.apache.maven.plugins</groupId> |
| 145 | + <artifactId>maven-surefire-plugin</artifactId> |
| 146 | + <version>3.1.2</version> |
| 147 | + <configuration> |
| 148 | + <!-- see https://redmine.nameprofiler.com/issues/20476--> |
| 149 | + <skipTests>true</skipTests> |
| 150 | + </configuration> |
| 151 | + </plugin> |
140 | 152 | </plugins> |
141 | 153 | </build> |
142 | 154 |
|
|
151 | 163 | </build> |
152 | 164 | </profile> |
153 | 165 |
|
154 | | - <profile> |
155 | | - <!-- make the build work with Java7 and Java8 out of the box, see |
156 | | - https://stackoverflow.com/questions/22528767/how-to-work-around-the-stricter-java-8-javadoc-when-using-maven --> |
157 | | - <id>disable-java8-doclint</id> |
158 | | - <activation> |
159 | | - <jdk>[1.8,)</jdk> |
160 | | - </activation> |
161 | | - <properties> |
162 | | - <additionalparam>-Xdoclint:none</additionalparam> |
163 | | - </properties> |
164 | | - </profile> |
165 | | - |
166 | 166 | <profile> |
167 | 167 | <id>release-sign-artifacts</id> |
168 | 168 | <activation> |
|
177 | 177 | <plugin> |
178 | 178 | <groupId>org.sonatype.plugins</groupId> |
179 | 179 | <artifactId>nexus-staging-maven-plugin</artifactId> |
180 | | - <version>1.6.7</version> |
| 180 | + <version>1.6.13</version> |
181 | 181 | <extensions>true</extensions> |
182 | 182 | <configuration> |
183 | 183 | <serverId>ossrh</serverId> |
|
188 | 188 | <plugin> |
189 | 189 | <groupId>org.apache.maven.plugins</groupId> |
190 | 190 | <artifactId>maven-gpg-plugin</artifactId> |
191 | | - <version>${maven-gpg-plugin.version}</version> |
| 191 | + <version>3.1.0</version> |
192 | 192 | <!--<configuration>--> |
193 | 193 | <!--<passphrase>${gpg.passphrase}</passphrase>--> |
194 | 194 | <!--</configuration>--> |
|
358 | 358 | <dependency> |
359 | 359 | <groupId>org.testng</groupId> |
360 | 360 | <artifactId>testng</artifactId> |
361 | | - <!-- updated on 2015-11-04 --> |
362 | | - <version>6.9.9</version> |
| 361 | + <version>7.8.0</version> |
363 | 362 | <scope>test</scope> |
364 | 363 | </dependency> |
365 | 364 | <dependency> |
366 | 365 | <groupId>ch.qos.logback</groupId> |
367 | 366 | <artifactId>logback-classic</artifactId> |
368 | | - <version>1.1.3</version> |
| 367 | + <version>1.4.11</version> |
369 | 368 | <scope>test</scope> |
370 | 369 | </dependency> |
371 | 370 | </dependencies> |
|
0 commit comments