We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd04717 commit 75a1e5bCopy full SHA for 75a1e5b
ejb/remote/vendor/pom.xml
@@ -11,9 +11,24 @@
11
12
<properties>
13
<glassfish.client.version>5.0</glassfish.client.version>
14
+ <java.min.version>1.7</java.min.version>
15
</properties>
16
17
<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>
32
33
<profiles>
34
<profile>
0 commit comments