Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions THIRD_PARTY_LICENSES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jline 3.21.0
jline 3.22.0

Copyright (c) 2002-2018, the original author or authors.
All rights reserved.
Expand Down Expand Up @@ -35,7 +35,7 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.

jackson-core, jackson-databind 2.13.2, 2.13.2.2
jackson-core, jackson-databind 2.14.1, 2.14.1


Apache License
Expand Down Expand Up @@ -240,7 +240,7 @@ jackson-core, jackson-databind 2.13.2, 2.13.2.2
See the License for the specific language governing permissions and
limitations under the License.

junit 5.8.2
junit 5.9.2

Copyright 2015-2021 the original author or authors.

Expand Down Expand Up @@ -576,7 +576,7 @@ this Agreement will bring a legal action under this Agreement more than
one year after the cause of action arose. Each party waives its rights to
a jury trial in any resulting litigation.

protobuf-java 3.19.4
protobuf-java 3.19.6

Copyright 2008 Google Inc. All rights reserved.

Expand Down
2 changes: 1 addition & 1 deletion olcut-config-edn/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<configuration>
<archive>
<manifestEntries>
Expand Down
2 changes: 1 addition & 1 deletion olcut-config-protobuf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<configuration>
<archive>
<manifestEntries>
Expand Down
2 changes: 1 addition & 1 deletion olcut-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<configuration>
<archive>
<manifestEntries>
Expand Down
4 changes: 2 additions & 2 deletions olcut-extras/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>

<properties>
<asm.version>9.1</asm.version>
<asm.version>9.4</asm.version>
</properties>

<artifactId>olcut-extras</artifactId>
Expand Down Expand Up @@ -44,7 +44,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<configuration>
<archive>
<manifestEntries>
Expand Down
24 changes: 12 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<edn.version>0.7.1</edn.version>
<jackson.version>2.13.4</jackson.version>
<jackson.databind.version>2.13.4.2</jackson.databind.version>
<jline.version>3.21.0</jline.version>
<junit.version>5.8.2</junit.version>
<jackson.version>2.14.1</jackson.version>
<jackson.databind.version>2.14.1</jackson.databind.version>
<jline.version>3.22.0</jline.version>
<junit.version>5.9.2</junit.version>
<protobuf.version>3.19.6</protobuf.version>
</properties>
<modules>
Expand Down Expand Up @@ -106,7 +106,7 @@
<scm>
<connection>scm:git:git://github.com/oracle/olcut.git</connection>
<developerConnection>scm:git:ssh://github.com:oracle/olcut.git</developerConnection>
<url>http://github.com/oracle/olcut</url>
<url>https://github.com/oracle/olcut</url>
</scm>

<dependencyManagement>
Expand Down Expand Up @@ -172,19 +172,19 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<version>3.0.0-M8</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
<version>3.0.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<version>3.1.0</version>
<executions>
<execution>
<id>enforce-maven</id>
Expand All @@ -194,7 +194,7 @@
<configuration>
<rules>
<requireMavenVersion>
<version>3.5.0</version>
<version>3.8.0</version>
</requireMavenVersion>
</rules>
</configuration>
Expand All @@ -204,7 +204,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<version>3.4.1</version>
<configuration>
<show>public</show>
<failOnError>false</failOnError>
Expand All @@ -215,7 +215,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand Down Expand Up @@ -259,7 +259,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
<version>3.0.0</version>
</plugin>

<plugin>
Expand Down