Skip to content

Commit 75a1e5b

Browse files
committed
Set minimal Java version for vendor EJB plug-ins
1 parent dd04717 commit 75a1e5b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

ejb/remote/vendor/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,24 @@
1111

1212
<properties>
1313
<glassfish.client.version>5.0</glassfish.client.version>
14+
<java.min.version>1.7</java.min.version>
1415
</properties>
1516

1617
<name>Java EE 7 Sample: ejb - remote - vendor</name>
18+
19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>org.apache.maven.plugins</groupId>
23+
<artifactId>maven-compiler-plugin</artifactId>
24+
<version>3.8.0</version>
25+
<configuration>
26+
<source>${java.min.version}</source>
27+
<target>${java.min.version}</target>
28+
</configuration>
29+
</plugin>
30+
</plugins>
31+
</build>
1732

1833
<profiles>
1934
<profile>

0 commit comments

Comments
 (0)