|
5 | 5 |
|
6 | 6 | <groupId>giis</groupId> |
7 | 7 | <artifactId>samples-test-dev</artifactId> |
8 | | - <version>2.0.5-SNAPSHOT</version> |
| 8 | + <version>2.0.5</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 | <organization> |
11 | 11 | <name>Grupo de Investigacion en Ingenieria del Software - Universidad de Oviedo</name> |
|
21 | 21 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
22 | 22 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | 23 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
24 | | - <slf4j.version>2.0.6</slf4j.version> |
| 24 | + <slf4j.version>2.0.7</slf4j.version> |
25 | 25 | </properties> |
26 | 26 |
|
27 | 27 | <dependencies> |
|
48 | 48 | <dependency> |
49 | 49 | <groupId>io.github.javiertuya</groupId> |
50 | 50 | <artifactId>visual-assert</artifactId> |
51 | | - <version>2.2.2</version> |
| 51 | + <version>2.3.0</version> |
52 | 52 | </dependency> |
53 | 53 |
|
54 | 54 | <!-- drivers de base de datos --> |
55 | 55 | <dependency> |
56 | 56 | <groupId>org.xerial</groupId> |
57 | 57 | <artifactId>sqlite-jdbc</artifactId> |
58 | | - <version>3.40.1.0</version> |
| 58 | + <version>3.41.2.1</version> |
59 | 59 | </dependency> |
60 | 60 | <!-- Logs --> |
61 | 61 | <dependency> |
|
98 | 98 | <plugin> |
99 | 99 | <groupId>org.apache.maven.plugins</groupId> |
100 | 100 | <artifactId>maven-surefire-plugin</artifactId> |
101 | | - <version>2.22.2</version> |
| 101 | + <version>3.0.0</version> |
102 | 102 | <configuration> |
103 | 103 | <testFailureIgnore>true</testFailureIgnore> |
104 | 104 | <!-- Sets the VM argument line used when unit tests are run under JaCoCo --> |
|
149 | 149 | <plugin> |
150 | 150 | <groupId>org.apache.maven.plugins</groupId> |
151 | 151 | <artifactId>maven-surefire-report-plugin</artifactId> |
152 | | - <version>2.22.2</version> |
| 152 | + <version>3.0.0</version> |
153 | 153 | <executions> |
154 | 154 | <execution> |
155 | 155 | <id>ut-reports</id> |
|
204 | 204 | <plugin> |
205 | 205 | <groupId>org.apache.maven.plugins</groupId> |
206 | 206 | <artifactId>maven-javadoc-plugin</artifactId> |
207 | | - <version>3.4.1</version> |
| 207 | + <version>3.5.0</version> |
208 | 208 | <configuration> |
209 | 209 | <overview>${basedir}/src/main/java/overview.html</overview> |
210 | 210 | <sourcepath>${basedir}/src/main/java;${basedir}/src/test/java;${basedir}/src/it/java</sourcepath> |
211 | | - <outputDirectory>${project.reporting.outputDirectory}/apidocs</outputDirectory> |
| 211 | + <destDir>apidocs</destDir> |
212 | 212 | <quiet>true</quiet> |
213 | 213 | <doclint>none</doclint> |
214 | 214 | </configuration> |
215 | 215 | <executions> |
216 | 216 | <execution> |
217 | | - <id>attach-javadocs</id> |
| 217 | + <id>generate-all-javadocs</id> |
218 | 218 | <phase>install</phase> |
219 | 219 | <goals> |
220 | | - <goal>jar</goal> |
| 220 | + <!--normalmente este goal seria jar, no interesa el jar, solo el javadoc |
| 221 | + y evita warnings/errores porque se estan generando javadocs de los tests--> |
| 222 | + <goal>test-javadoc</goal> |
221 | 223 | </goals> |
222 | 224 | </execution> |
223 | 225 | </executions> |
|
0 commit comments