diff options
author | Brian S. O'Neill <bronee@gmail.com> | 2006-10-01 02:21:22 +0000 |
---|---|---|
committer | Brian S. O'Neill <bronee@gmail.com> | 2006-10-01 02:21:22 +0000 |
commit | a3812492c559e198076767358f6d5fb836dde93d (patch) | |
tree | 5afb978f2bb48a549c4a95ac976e0dafecc3722f | |
parent | f5a69fbf5e7e343d094687263604ce18b7b6dae5 (diff) |
Moved compiler plugin config to proper location.
-rw-r--r-- | pom.xml | 22 |
1 files changed, 13 insertions, 9 deletions
@@ -114,6 +114,19 @@ </dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
<reporting>
<plugins>
<plugin>
@@ -163,15 +176,6 @@ <plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
|