Skip to content

Commit

Permalink
Merge pull request #2413 from intermine/dev
Browse files Browse the repository at this point in the history
release 5.0.5
  • Loading branch information
Daniela Butano committed Dec 22, 2021
2 parents a08c3f0 + d72ef4f commit b3b328e
Show file tree
Hide file tree
Showing 16 changed files with 30 additions and 26 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@ InterMine

Master: [![InterMine CI](https://github.com/intermine/intermine/workflows/InterMine%20CI/badge.svg?branch=master)](https://github.com/intermine/intermine/actions?query=workflow%3A%22InterMine+CI%22)
Dev: [![InterMine CI](https://github.com/intermine/intermine/workflows/InterMine%20CI/badge.svg?branch=dev)](https://github.com/intermine/intermine/actions?query=workflow%3A%22InterMine+CI%22)
[![Version](http://img.shields.io/badge/version-5.0.4-blue.svg?style=flat)](https://github.com/intermine/intermine/releases)
[![Version](http://img.shields.io/badge/version-5.0.5-blue.svg?style=flat)](https://github.com/intermine/intermine/releases)
[![License](http://img.shields.io/badge/license-LGPL_2.1-blue.svg?style=flat)](https://github.com/intermine/intermine/blob/master/LICENSE)
[![Research software impact](http://depsy.org/api/package/pypi/intermine/badge.svg)](http://depsy.org/package/python/intermine)
[![Conda](https://anaconda.org/anaconda/conda-build/badges/installer/conda.svg)](https://anaconda.org/bioconda/intermine)
Expand Down
4 changes: 4 additions & 0 deletions RELEASE_NOTES
Expand Up @@ -7,6 +7,10 @@
* information or http://www.gnu.org/copyleft/lesser.html.
*
*/
InterMine 5.0.5 (Dicember 2021)

#2411 - Log4j-1x compatibility upgrade (thanks @asherpasha)

InterMine 5.0.4 (Dicember 2021)

#2324 - Remove dependency from EBI maven nexus repo
Expand Down
2 changes: 1 addition & 1 deletion bio/build.gradle
@@ -1,6 +1,6 @@
subprojects {
group = 'org.intermine'
version = '5.0.4'
version = '5.0.5'

apply plugin: "java"
apply plugin: "maven"
Expand Down
4 changes: 2 additions & 2 deletions bio/gradle.properties
@@ -1,5 +1,5 @@
systemProp.imVersion=5.0.4
systemProp.bioVersion=5.0.4
systemProp.imVersion=5.0.5
systemProp.bioVersion=5.0.5

# some unit tests need additional classes that aren't in the core model.
# we use flymine's model. don't touch!
Expand Down
2 changes: 1 addition & 1 deletion bio/postprocess-test/build.gradle
Expand Up @@ -17,7 +17,7 @@ ext {

subprojects {
group = 'org.intermine'
version = '5.0.4'
version = '5.0.5'

apply plugin: 'java'
apply plugin: 'maven'
Expand Down
4 changes: 2 additions & 2 deletions bio/postprocess-test/gradle.properties
@@ -1,5 +1,5 @@
systemProp.imVersion=5.0.4
systemProp.bioVersion=5.0.4
systemProp.imVersion=5.0.5
systemProp.bioVersion=5.0.5

systemProp.flymineVersion=4.0.0

Expand Down
2 changes: 1 addition & 1 deletion bio/postprocess/build.gradle
Expand Up @@ -16,7 +16,7 @@ ext {

subprojects {
group = 'org.intermine'
version = '5.0.4'
version = '5.0.5'

apply plugin: 'java'
apply plugin: 'maven'
Expand Down
4 changes: 2 additions & 2 deletions bio/postprocess/gradle.properties
@@ -1,5 +1,5 @@
systemProp.imVersion=5.0.4
systemProp.bioVersion=5.0.4
systemProp.imVersion=5.0.5
systemProp.bioVersion=5.0.5

systemProp.javax.xml.stream.XMLOutputFactory = com.sun.xml.internal.stream.XMLOutputFactoryImpl

Expand Down
4 changes: 2 additions & 2 deletions bio/sources/build.gradle
Expand Up @@ -16,7 +16,7 @@ ext {

subprojects {
group = 'org.intermine'
version = '5.0.4'
version = '5.0.5'

apply plugin: 'java'
apply plugin: 'maven'
Expand All @@ -42,7 +42,7 @@ subprojects {
}

dependencies {
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'org.apache.logging.log4j', name: 'log4j-1.2-api', version: '2.17.0'
compile group: 'org.intermine', name: 'bio-core', version: System.getProperty("bioVersion"), transitive: false
compile group : "org.intermine", name: "intermine-resources", version: System.getProperty("imVersion") // log4j
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
Expand Down
4 changes: 2 additions & 2 deletions bio/sources/gradle.properties
@@ -1,5 +1,5 @@
systemProp.imVersion=5.0.4
systemProp.bioVersion=5.0.4
systemProp.imVersion=5.0.5
systemProp.bioVersion=5.0.5

# some unit tests need additional classes that aren't in the core model.
# we use flymine's model. don't touch!
Expand Down
8 changes: 4 additions & 4 deletions intermine/build.gradle
@@ -1,6 +1,6 @@
subprojects {
group = 'org.intermine'
version '5.0.4'
version '5.0.5'

apply plugin: "java"
apply plugin: "maven"
Expand All @@ -22,16 +22,16 @@ subprojects {
configurations {
all {
resolutionStrategy {
force 'org.apache.logging.log4j:log4j-1.2-api:2.8.2'
force 'org.apache.logging.log4j:log4j-1.2-api:2.17.0'
}
}
}

if (it.name != 'intermine-resources') {
dependencies {
compile group: 'ant', name: 'ant', version: '1.6.5'
compile group: 'org.apache.logging.log4j', name: 'log4j-1.2-api', version: '2.8.2'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.7'
compile group: 'org.apache.logging.log4j', name: 'log4j-1.2-api', version: '2.17.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.17.0'
testCompile group: 'junit', name: 'junit', version: '4.8.2'
}

Expand Down
4 changes: 2 additions & 2 deletions intermine/gradle.properties
@@ -1,5 +1,5 @@
systemProp.imVersion=5.0.4
systemProp.bioVersion=5.0.4
systemProp.imVersion=5.0.5
systemProp.bioVersion=5.0.5

systemProp.javax.xml.stream.XMLOutputFactory = com.sun.xml.internal.stream.XMLOutputFactoryImpl

Expand Down
Expand Up @@ -226,7 +226,7 @@ private Constants() {
/**
* Current version of the InterMine code
*/
public static final String INTERMINE_VERSION = "5.0.4";
public static final String INTERMINE_VERSION = "5.0.5";

/**
* Key for a Map from class name to Boolean.TRUE for all classes in the model that do not have
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'maven'
apply plugin: 'signing'

group 'org.intermine'
version '5.0.4'
version '5.0.5'

sourceCompatibility = 1.8

Expand Down
4 changes: 2 additions & 2 deletions plugin/gradle.properties
@@ -1,5 +1,5 @@
systemProp.imVersion=5.0.4
systemProp.bioVersion=5.0.4
systemProp.imVersion=5.0.5
systemProp.bioVersion=5.0.5

systemProp.javax.xml.stream.XMLOutputFactory = com.sun.xml.internal.stream.XMLOutputFactoryImpl

Expand Down
4 changes: 2 additions & 2 deletions testmine/build.gradle
@@ -1,5 +1,5 @@
ext {
imVersion = "5.0.4"
imVersion = "5.0.5"
taskGroup = "InterMine"
minePropertyFileName = "testmodel.properties"
minePropertyFile = "${System.env.HOME}/.intermine/$minePropertyFileName"
Expand Down Expand Up @@ -28,7 +28,7 @@ subprojects {

dependencies {
compile group: 'ant', name: 'ant', version: '1.6.5'
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'org.apache.logging.log4j', name: 'log4j-1.2-api', version: '2.17.0'
commonResources group: "org.intermine", name: "intermine-resources", version: imVersion
}

Expand Down

0 comments on commit b3b328e

Please sign in to comment.