File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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...
194194apply plugin: 'maven'
195- sourceCompatibility = 1.8
196- targetCompatibility = 1.8
195+ sourceCompatibility = 1.7
196+ targetCompatibility = 1.7
197197repositories {
198198 mavenLocal()
199199 mavenCentral()
200200 ...
201201}
202202dependencies {
203203 ...
204- compile 'com.nordstrom.tools:junit-foundation:9.1.1 '
204+ compile 'com.nordstrom.tools:junit-foundation:9.4.2 '
205205}
206206ext {
207207 junitFoundation = configurations.compile.resolvedConfiguration.resolvedArtifacts.find { it.name == 'junit-foundation' }
You can’t perform that action at this time.
0 commit comments