Skip to content

Commit 8fa914d

Browse files
committed
Update minimum requirements
1 parent b527a0b commit 8fa914d

File tree

114 files changed

+222
-222
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+222
-222
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ System Requirements
5555

5656
To run these quickstarts with the provided build scripts, you need the following:
5757

58-
1. Java 1.6, to run WildFly and Maven. You can choose from the following:
58+
1. Java 1.7, to run WildFly and Maven. You can choose from the following:
5959
* OpenJDK
6060
* Oracle Java SE
6161
* Oracle JRockit
6262

63-
2. Maven 3.0.0 or newer, to build and deploy the examples
63+
2. Maven 3.1.0 or newer, to build and deploy the examples
6464
* If you have not yet installed Maven, see the [Maven Getting Started Guide](http://maven.apache.org/guides/getting-started/index.html) for details.
6565
* If you have installed Maven, you can check the version by typing the following in a command line:
6666

bean-validation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This quickstart does not contain a user interface layer. The purpose of this pro
1818
System requirements
1919
-------------------
2020

21-
All you need to build this project is Java 6.0 (Java SDK 1.6) or better, Maven 3.0 or better.
21+
All you need to build this project is Java 7.0 (Java SDK 1.7) or better, Maven 3.1 or better.
2222

2323
The application this project produces is designed to be run on JBoss WildFly.
2424

bean-validation/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@
6060
<!-- other plugin versions -->
6161
<version.surefire.plugin>2.10</version.surefire.plugin>
6262
<version.war.plugin>2.1.1</version.war.plugin>
63-
<version.compiler.plugin>2.3.1</version.compiler.plugin>
63+
<version.compiler.plugin>3.1</version.compiler.plugin>
6464

6565
<!-- maven-compiler-plugin -->
66-
<maven.compiler.target>1.6</maven.compiler.target>
67-
<maven.compiler.source>1.6</maven.compiler.source>
66+
<maven.compiler.target>1.7</maven.compiler.target>
67+
<maven.compiler.source>1.7</maven.compiler.source>
6868
</properties>
6969

7070
<dependencyManagement>

bmt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ _NOTE: A Java EE container is designed with robustness in mind, so you should ca
2626
System requirements
2727
-------------------
2828

29-
All you need to build this project is Java 6.0 (Java SDK 1.6) or better, Maven 3.0 or better.
29+
All you need to build this project is Java 7.0 (Java SDK 1.7) or better, Maven 3.1 or better.
3030

3131
The application this project produces is designed to be run on JBoss WildFly.
3232

bmt/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@
5050

5151
<!-- other plugin versions -->
5252
<version.war.plugin>2.1.1</version.war.plugin>
53-
<version.compiler.plugin>2.3.1</version.compiler.plugin>
53+
<version.compiler.plugin>3.1</version.compiler.plugin>
5454

5555
<!-- maven-compiler-plugin -->
56-
<maven.compiler.target>1.6</maven.compiler.target>
57-
<maven.compiler.source>1.6</maven.compiler.source>
56+
<maven.compiler.target>1.7</maven.compiler.target>
57+
<maven.compiler.source>1.7</maven.compiler.source>
5858
</properties>
5959

6060
<dependencyManagement>

carmart-tx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Infinispan ships with several transaction manager lookup classes:
3030
System requirements
3131
-------------------
3232

33-
All you need to build this project is Java 6.0 (Java SDK 1.6) or better, Maven 3.0 or better.
33+
All you need to build this project is Java 7.0 (Java SDK 1.7) or better, Maven 3.1 or better.
3434

3535
The application this project produces is designed to be run on JBoss WildFly.
3636

carmart-tx/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
<version.war.plugin>2.2</version.war.plugin>
6363

6464
<!-- maven-compiler-plugin -->
65-
<maven.compiler.target>1.6</maven.compiler.target>
66-
<maven.compiler.source>1.6</maven.compiler.source>
65+
<maven.compiler.target>1.7</maven.compiler.target>
66+
<maven.compiler.source>1.7</maven.compiler.source>
6767
</properties>
6868

6969
<dependencyManagement>

carmart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The CarMart quickstart application and the data grid run in the same JVM. All li
1919
System requirements
2020
-------------------
2121

22-
All you need to build this project is Java 6.0 (Java SDK 1.6) or better, Maven 3.0 or better.
22+
All you need to build this project is Java 7.0 (Java SDK 1.7) or better, Maven 3.1 or better.
2323

2424
The application this project produces is designed to be run on JBoss WildFly.
2525

carmart/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
<version.war.plugin>2.2</version.war.plugin>
6464

6565
<!-- maven-compiler-plugin -->
66-
<maven.compiler.target>1.6</maven.compiler.target>
67-
<maven.compiler.source>1.6</maven.compiler.source>
66+
<maven.compiler.target>1.7</maven.compiler.target>
67+
<maven.compiler.source>1.7</maven.compiler.source>
6868

6969

7070
</properties>

cdi-alternative/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For EL resolution, it must contain @Named
2727
System requirements
2828
-------------------
2929

30-
All you need to build this project is Java 6.0 (Java SDK 1.6) or better, Maven 3.0 or better.
30+
All you need to build this project is Java 7.0 (Java SDK 1.7) or better, Maven 3.1 or better.
3131

3232
The application this project produces is designed to be run on JBoss WildFly.
3333

0 commit comments

Comments
 (0)