Skip to content

Commit 04f76c6

Browse files
authored
Update README.md
1 parent e21d532 commit 04f76c6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ The hooks that enable **JUnit Foundation** test lifecycle notifications are inst
116116

117117
<properties>
118118
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
119-
<maven.compiler.target>1.8</maven.compiler.target>
120-
<maven.compiler.source>1.8</maven.compiler.source>
119+
<maven.compiler.target>1.7</maven.compiler.target>
120+
<maven.compiler.source>1.7</maven.compiler.source>
121121
</properties>
122122

123123
<dependencies>
124124
<dependency>
125125
<groupId>com.nordstrom.tools</groupId>
126126
<artifactId>junit-foundation</artifactId>
127-
<version>9.1.1</version>
127+
<version>9.4.2</version>
128128
<scope>test</scope>
129129
</dependency>
130130
</dependencies>
@@ -192,16 +192,16 @@ The hooks that enable **JUnit Foundation** test lifecycle notifications are inst
192192
// build.gradle
193193
...
194194
apply plugin: 'maven'
195-
sourceCompatibility = 1.8
196-
targetCompatibility = 1.8
195+
sourceCompatibility = 1.7
196+
targetCompatibility = 1.7
197197
repositories {
198198
mavenLocal()
199199
mavenCentral()
200200
...
201201
}
202202
dependencies {
203203
...
204-
compile 'com.nordstrom.tools:junit-foundation:9.1.1'
204+
compile 'com.nordstrom.tools:junit-foundation:9.4.2'
205205
}
206206
ext {
207207
junitFoundation = configurations.compile.resolvedConfiguration.resolvedArtifacts.find { it.name == 'junit-foundation' }

0 commit comments

Comments
 (0)