Skip to content

Commit a452663

Browse files
committed
Moves the compiler declaration to the build project.
1 parent f72fb55 commit a452663

File tree

2 files changed

+11
-14
lines changed

2 files changed

+11
-14
lines changed

flapi-build-project/pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,17 @@
6666
</executions>
6767
</plugin>
6868

69+
<!-- specify the default compiler settings -->
70+
<plugin>
71+
<groupId>org.apache.maven.plugins</groupId>
72+
<artifactId>maven-compiler-plugin</artifactId>
73+
<version>2.5.1</version>
74+
<configuration>
75+
<source>1.6</source>
76+
<target>1.6</target>
77+
</configuration>
78+
</plugin>
79+
6980
<!-- create a source jar at the end -->
7081
<plugin>
7182
<groupId>org.apache.maven.plugins</groupId>

flapi-build-test-producer/pom.xml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,20 +39,6 @@
3939
<flapi.includeRuntime>true</flapi.includeRuntime>
4040
</properties>
4141

42-
<build>
43-
<plugins>
44-
<plugin>
45-
<groupId>org.apache.maven.plugins</groupId>
46-
<artifactId>maven-compiler-plugin</artifactId>
47-
<version>2.5.1</version>
48-
<configuration>
49-
<source>1.6</source>
50-
<target>1.6</target>
51-
</configuration>
52-
</plugin>
53-
</plugins>
54-
</build>
55-
5642
<dependencies>
5743
<dependency>
5844
<groupId>unquietcode.tools.flapi</groupId>

0 commit comments

Comments
 (0)