Skip to content

Commit

Permalink
Minor changes including bumping Spring core version to 4.3.25.
Browse files Browse the repository at this point in the history
  • Loading branch information
inno-juanal committed Aug 23, 2019
1 parent f0f21f2 commit cda27cb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#Maven build files #
/target/
/bin/

# Eclipse project files #
/.classpath
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>au.com.innodev.wmboost</groupId>
<artifactId>wmboost-data</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.0.1</version>

<properties>
<maven.compiler.source>1.6</maven.compiler.source>
Expand All @@ -17,7 +17,7 @@
<artifactId>spring-core</artifactId>
<!-- NOTE: 3.2.17+ is supported but we use 4.x to embed it in the stand-alone
JAR -->
<version>4.3.6.RELEASE</version>
<version>4.3.25.RELEASE</version>
</dependency>


Expand Down Expand Up @@ -102,7 +102,7 @@
<pattern>au.com.innodev.**</pattern>
</keep>
</rules>
<output>${project.build.directory}\wmboost-data-${project.version}-standalone.jar</output>
<output>${project.build.directory}/wmboost-data-${project.version}-standalone.jar</output>
</configuration>
</execution>
</executions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ List<E> getValOrDefault(List<? extends E> defaultValue, NullValHandling nullValH
void remove() throws InexistentEntryException;

/**
* Deletes the entry identified by the elements key.
* Deletes the entry identified by the element's key.
*
* <p>
* Note that type used for the entry (e.g. String) is not taken into account
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/au/com/innodev/wmboost/data/ItemEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public interface ItemEntry<T> extends BaseUnitEntry, UnitEntryAccessor<T>, UnitE
void remove() throws InexistentEntryException;

/**
* Deletes the entry identified by the element’s key.
* Deletes the entry identified by the element's key.
*
* <p>
* Note that type used for the entry (e.g. String) is not considered when
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/license.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2017 Innodev
Copyright 2019 Innodev

Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/META-INF/notice.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ The distribution of wmboost-data uses and/or adapts
code from the following projects:

- Spring Framework [Apache 2.0 license]
- Apache Commons Lang [Apache 2.0 license]
- Jackson Data-Bind project [Apache 2.0 license]
- Apache Commons Lang [Apache 2.0 license]

0 comments on commit cda27cb

Please sign in to comment.