Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,12 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>1.7</source>
<target>1.7</target>
<!--The test sources use JDK 8 features, if you only have JDK 7, you can still build
JavaMOP with 'mvn clean package -Dmaven.test.skip'-->
<testSource>1.8</testSource>
<testTarget>1.8</testTarget>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 2 additions & 0 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ v.3.0 or higher
v.1.8 or higher
* Check Git is installed properly: run `git` from a terminal.

P.S. JDK 8 is required to run the tests of JavaMOP.

## Build and Install

1. Run `git clone https://github.com/runtimeverification/javamop.git`
Expand Down