Skip to content

Commit

Permalink
Release 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
javiertuya committed Mar 26, 2023
1 parent c1df226 commit b6110ae
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 13 deletions.
11 changes: 11 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,16 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="target/generated-sources/annotations">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
3 changes: 1 addition & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: 'target/site/apidocs'
path: 'target/site/testapidocs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
13 changes: 12 additions & 1 deletion .project
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="utf-8"?>
<projectDescription>
<name>samples-test-dev</name>
<comment></comment>
Expand All @@ -20,4 +20,15 @@
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
<filteredResources>
<filter>
<id>1679827798957</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
4 changes: 4 additions & 0 deletions .settings/org.eclipse.jdt.apt.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
eclipse.preferences.version=1
org.eclipse.jdt.apt.aptEnabled=true
org.eclipse.jdt.apt.genSrcDir=target/generated-sources/annotations
org.eclipse.jdt.apt.genTestSrcDir=target/generated-test-sources/test-annotations
1 change: 1 addition & 0 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
org.eclipse.jdt.core.compiler.processAnnotations=enabled
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8
4 changes: 4 additions & 0 deletions .settings/org.eclipse.m2e.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
22 changes: 12 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>giis</groupId>
<artifactId>samples-test-dev</artifactId>
<version>2.0.5-SNAPSHOT</version>
<version>2.0.5</version>
<packaging>jar</packaging>
<organization>
<name>Grupo de Investigacion en Ingenieria del Software - Universidad de Oviedo</name>
Expand All @@ -21,7 +21,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<slf4j.version>2.0.6</slf4j.version>
<slf4j.version>2.0.7</slf4j.version>
</properties>

<dependencies>
Expand All @@ -48,14 +48,14 @@
<dependency>
<groupId>io.github.javiertuya</groupId>
<artifactId>visual-assert</artifactId>
<version>2.2.2</version>
<version>2.3.0</version>
</dependency>

<!-- drivers de base de datos -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.40.1.0</version>
<version>3.41.2.1</version>
</dependency>
<!-- Logs -->
<dependency>
Expand Down Expand Up @@ -98,7 +98,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>3.0.0</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
<!-- Sets the VM argument line used when unit tests are run under JaCoCo -->
Expand Down Expand Up @@ -149,7 +149,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.22.2</version>
<version>3.0.0</version>
<executions>
<execution>
<id>ut-reports</id>
Expand Down Expand Up @@ -204,20 +204,22 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<version>3.5.0</version>
<configuration>
<overview>${basedir}/src/main/java/overview.html</overview>
<sourcepath>${basedir}/src/main/java;${basedir}/src/test/java;${basedir}/src/it/java</sourcepath>
<outputDirectory>${project.reporting.outputDirectory}/apidocs</outputDirectory>
<destDir>apidocs</destDir>
<quiet>true</quiet>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<id>generate-all-javadocs</id>
<phase>install</phase>
<goals>
<goal>jar</goal>
<!--normalmente este goal seria jar, no interesa el jar, solo el javadoc
y evita warnings/errores porque se estan generando javadocs de los tests-->
<goal>test-javadoc</goal>
</goals>
</execution>
</executions>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/giis/demo/util/TableColumnAdjuster.java
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ private void installToggleAction(
*/
class ColumnAction extends AbstractAction
{
private static final long serialVersionUID = 4984620597706208905L;
private boolean isSelectedColumn;
private boolean isAdjust;

Expand Down Expand Up @@ -395,6 +396,7 @@ public void actionPerformed(ActionEvent e)
*/
class ToggleAction extends AbstractAction
{
private static final long serialVersionUID = 7624802328861535435L;
private boolean isToggleDynamic;
private boolean isToggleLarger;

Expand Down

0 comments on commit b6110ae

Please sign in to comment.