Skip to content

Commit

Permalink
Merge pull request #66 from NaluKit/release/1.0.5
Browse files Browse the repository at this point in the history
Release/1.0.5
  • Loading branch information
FrankHossfeld authored Dec 11, 2024
2 parents 3a175d8 + 67ad10d commit b763b8f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ did not find a suitable one that work with GWT or J2CL.
So we decided to create a simple solution to validate our input classes (which are located inside the
shared project).

We don't want to create a replacement for bean-validation. Just a simple tin framework to validate objects.
We don't want to create a replacement for bean-validation. Just a simple tiny framework to validate objects.

## Usage

Expand Down
1 change: 1 addition & 0 deletions malio-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.plugin}</version>
<configuration>
<skip>false</skip>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class Malio {

public static String getVersion() {
// TODO Change this for other versions
return "1.0.4";
return "HEAD-SNAPSHOT";
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ public static String get(int len,

/**
* Generate a RFC4122, version 4 ID. Example: "92329D39-6F5C-4520-ABFC-AAB64544E172"
*
* @return generated UUID
*/
public static String get() {
char[] uuid = new char[36];
Expand Down
14 changes: 8 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,26 +94,27 @@
</distributionManagement>

<properties>
<revision>1.0.4</revision>
<revision>1.0.5</revision>

<auto-service.version>1.1.1</auto-service.version>
<compile-testing.version>0.21.0</compile-testing.version>
<elemental2.version>1.2.1</elemental2.version>
<gson.version>2.10.1</gson.version>
<gson.version>2.11.0</gson.version>
<guava.version>33.2.1-jre</guava.version>
<gwt.version>2.11.0</gwt.version>
<gwt.version>2.12.1</gwt.version>
<java.doc.executable>${java.home}/bin/javadoc</java.doc.executable>
<javapoet.version>1.13.0</javapoet.version>
<junit-jupiter.version>5.10.3</junit-jupiter.version>
<junit-jupiter.engine.version>5.10.2</junit-jupiter.engine.version>
<junit-jupiter-platform.version>1.10.2</junit-jupiter-platform.version>
<junit-jupiter.version>5.11.1</junit-jupiter.version>
<junit-jupiter.engine.version>5.11.1</junit-jupiter.engine.version>
<junit-jupiter-platform.version>1.11.1</junit-jupiter-platform.version>
<truth.version>1.4.2</truth.version>

<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>

<maven.deploy.plugin>3.1.1</maven.deploy.plugin>
<plugin.version.clean>3.1.0</plugin.version.clean>
<plugin.version.deploy>3.1.2</plugin.version.deploy>
<plugin.version.flatten>1.5.0</plugin.version.flatten>
<plugin.version.gpg.maven>1.6</plugin.version.gpg.maven>
<plugin.version.javadoc>3.6.3</plugin.version.javadoc>
Expand Down Expand Up @@ -277,6 +278,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${plugin.version.deploy}</version>
<configuration>
<skip>false</skip>
</configuration>
Expand Down

0 comments on commit b763b8f

Please sign in to comment.