Skip to content

Commit

Permalink
Raise minimum java version to 6
Browse files Browse the repository at this point in the history
  • Loading branch information
hcoles committed Jul 27, 2015
1 parent baa09f0 commit 23731cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Read all about it at http://pitest.org

### 1.1.7-SNAPSHOT

Nothing yet
* #196 - Raise minimum java version to 1.6

### 1.1.6

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ public void shouldScopeMutationIndexesByInstructionCounter() {
final List<MutationDetails> actualDetails = findMutationsFor(HasTwoMutableMethods.class);
assertEquals(2, actualDetails.size());
assertEquals(4,actualDetails.get(0).getId().getFirstIndex());
assertEquals(14,actualDetails.get(1).getId().getFirstIndex()); // differs by target?
assertEquals(15,actualDetails.get(1).getId().getFirstIndex()); // differs by target?
}


Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 23731cd

Please sign in to comment.