Skip to content

Commit b6110ae

Browse files
committed
Release 2.0.5
1 parent c1df226 commit b6110ae

File tree

8 files changed

+47
-13
lines changed

8 files changed

+47
-13
lines changed

.classpath

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,16 @@
3434
<attribute name="maven.pomderived" value="true"/>
3535
</attributes>
3636
</classpathentry>
37+
<classpathentry kind="src" path="target/generated-sources/annotations">
38+
<attributes>
39+
<attribute name="optional" value="true"/>
40+
</attributes>
41+
</classpathentry>
42+
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
43+
<attributes>
44+
<attribute name="optional" value="true"/>
45+
<attribute name="test" value="true"/>
46+
</attributes>
47+
</classpathentry>
3748
<classpathentry kind="output" path="target/classes"/>
3849
</classpath>

.github/workflows/pages.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ jobs:
4545
- name: Upload artifact
4646
uses: actions/upload-pages-artifact@v1
4747
with:
48-
# Upload entire repository
49-
path: 'target/site/apidocs'
48+
path: 'target/site/testapidocs'
5049
- name: Deploy to GitHub Pages
5150
id: deployment
5251
uses: actions/deploy-pages@v1

.project

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<projectDescription>
33
<name>samples-test-dev</name>
44
<comment></comment>
@@ -20,4 +20,15 @@
2020
<nature>org.eclipse.jdt.core.javanature</nature>
2121
<nature>org.eclipse.m2e.core.maven2Nature</nature>
2222
</natures>
23+
<filteredResources>
24+
<filter>
25+
<id>1679827798957</id>
26+
<name></name>
27+
<type>30</type>
28+
<matcher>
29+
<id>org.eclipse.core.resources.regexFilterMatcher</id>
30+
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
31+
</matcher>
32+
</filter>
33+
</filteredResources>
2334
</projectDescription>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.apt.aptEnabled=true
3+
org.eclipse.jdt.apt.genSrcDir=target/generated-sources/annotations
4+
org.eclipse.jdt.apt.genTestSrcDir=target/generated-test-sources/test-annotations

.settings/org.eclipse.jdt.core.prefs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ org.eclipse.jdt.core.compiler.compliance=1.8
44
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
55
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
66
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
7+
org.eclipse.jdt.core.compiler.processAnnotations=enabled
78
org.eclipse.jdt.core.compiler.release=disabled
89
org.eclipse.jdt.core.compiler.source=1.8
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1

pom.xml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>giis</groupId>
77
<artifactId>samples-test-dev</artifactId>
8-
<version>2.0.5-SNAPSHOT</version>
8+
<version>2.0.5</version>
99
<packaging>jar</packaging>
1010
<organization>
1111
<name>Grupo de Investigacion en Ingenieria del Software - Universidad de Oviedo</name>
@@ -21,7 +21,7 @@
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
24-
<slf4j.version>2.0.6</slf4j.version>
24+
<slf4j.version>2.0.7</slf4j.version>
2525
</properties>
2626

2727
<dependencies>
@@ -48,14 +48,14 @@
4848
<dependency>
4949
<groupId>io.github.javiertuya</groupId>
5050
<artifactId>visual-assert</artifactId>
51-
<version>2.2.2</version>
51+
<version>2.3.0</version>
5252
</dependency>
5353

5454
<!-- drivers de base de datos -->
5555
<dependency>
5656
<groupId>org.xerial</groupId>
5757
<artifactId>sqlite-jdbc</artifactId>
58-
<version>3.40.1.0</version>
58+
<version>3.41.2.1</version>
5959
</dependency>
6060
<!-- Logs -->
6161
<dependency>
@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>org.apache.maven.plugins</groupId>
100100
<artifactId>maven-surefire-plugin</artifactId>
101-
<version>2.22.2</version>
101+
<version>3.0.0</version>
102102
<configuration>
103103
<testFailureIgnore>true</testFailureIgnore>
104104
<!-- Sets the VM argument line used when unit tests are run under JaCoCo -->
@@ -149,7 +149,7 @@
149149
<plugin>
150150
<groupId>org.apache.maven.plugins</groupId>
151151
<artifactId>maven-surefire-report-plugin</artifactId>
152-
<version>2.22.2</version>
152+
<version>3.0.0</version>
153153
<executions>
154154
<execution>
155155
<id>ut-reports</id>
@@ -204,20 +204,22 @@
204204
<plugin>
205205
<groupId>org.apache.maven.plugins</groupId>
206206
<artifactId>maven-javadoc-plugin</artifactId>
207-
<version>3.4.1</version>
207+
<version>3.5.0</version>
208208
<configuration>
209209
<overview>${basedir}/src/main/java/overview.html</overview>
210210
<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>
212212
<quiet>true</quiet>
213213
<doclint>none</doclint>
214214
</configuration>
215215
<executions>
216216
<execution>
217-
<id>attach-javadocs</id>
217+
<id>generate-all-javadocs</id>
218218
<phase>install</phase>
219219
<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>
221223
</goals>
222224
</execution>
223225
</executions>

src/main/java/giis/demo/util/TableColumnAdjuster.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,7 @@ private void installToggleAction(
353353
*/
354354
class ColumnAction extends AbstractAction
355355
{
356+
private static final long serialVersionUID = 4984620597706208905L;
356357
private boolean isSelectedColumn;
357358
private boolean isAdjust;
358359

@@ -395,6 +396,7 @@ public void actionPerformed(ActionEvent e)
395396
*/
396397
class ToggleAction extends AbstractAction
397398
{
399+
private static final long serialVersionUID = 7624802328861535435L;
398400
private boolean isToggleDynamic;
399401
private boolean isToggleLarger;
400402

0 commit comments

Comments
 (0)