Navigation Menu

Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 17, 2021
2 parents 925a746 + eb12b8b commit e050779
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -16,5 +16,6 @@
-->
# Apache Commons OGNL

[![Build Status](https://travis-ci.com/apache/commons-ognl.svg?branch=master)](https://travis-ci.com/apache/commons-ognl)
[![Java CI Status](https://github.com/apache/commons-ognl/workflows/Java%20CI/badge.svg)](https://github.com/apache/commons-ognl/actions?query=workflow%3A%22Java+CI%22)
[![Travis Status](https://travis-ci.com/apache/commons-ognl.svg?branch=master)](https://travis-ci.com/apache/commons-ognl)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-ognl/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-ognl)
26 changes: 10 additions & 16 deletions pom.xml
Expand Up @@ -254,7 +254,7 @@ limitations under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<configuration>
<archive>
<compress>true</compress>
Expand Down Expand Up @@ -334,12 +334,6 @@ limitations under the License.
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-idea-plugin</artifactId>
<version>2.2</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand All @@ -364,7 +358,7 @@ limitations under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.8</version>
<version>2.12.1</version>
<configuration>
<xmlPath>${basedir}/src/changes/changes.xml</xmlPath>
<issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
Expand All @@ -380,7 +374,7 @@ limitations under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.7</version>
<version>3.1.1</version>
<configuration>
<configLocation>config/maven_checks.xml</configLocation>
<headerLocation>config/maven-header.txt</headerLocation>
Expand All @@ -400,11 +394,11 @@ limitations under the License.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.4</version>
<version>2.7</version>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.3</version>
<version>3.14.0</version>
<configuration>
<targetJdk>${maven.compile.target}</targetJdk>
</configuration>
Expand Down Expand Up @@ -433,7 +427,7 @@ limitations under the License.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javancss-maven-plugin</artifactId>
<version>2.0</version>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.sonar-plugins</groupId>
Expand Down Expand Up @@ -493,14 +487,14 @@ limitations under the License.
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.158</version>
<version>1.4.200</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>junit-benchmarks</artifactId>
<classifier>jdk15</classifier>
<version>0.3.0</version>
<version>0.7.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -516,7 +510,7 @@ limitations under the License.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<version>3.2.0</version>
<executions>
<execution>
<id>add-test-source</id>
Expand Down Expand Up @@ -561,7 +555,7 @@ limitations under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<version>3.0.0</version>
<executions>
<execution>
<id>prepare-checkout</id>
Expand Down
3 changes: 3 additions & 0 deletions src/changes/changes.xml
Expand Up @@ -23,6 +23,9 @@
</properties>
<body>
<release version="4.0-incubating" date="TBD" description="First ASF release under Incubation.">
<action issue="" type="update" dev="nhojpatrick">
Upgrade to JUnit v4.13.1
</action>
<action issue="OGNL-39" type="update" dev="mcucchiara">
Simplify OgnlRuntime: Greatly simplified OgnlRuntime, delegating away responsibilities to several new classes.
Caching responsibilities are now taken by a new OgnlCache class.
Expand Down

0 comments on commit e050779

Please sign in to comment.