Move <dependencies> section to top of file.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 12 Oct 2010 04:46:36 +0000 (06:46 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 12 Oct 2010 04:46:36 +0000 (06:46 +0200)
pom.xml

diff --git a/pom.xml b/pom.xml
index ec169b2..bf2759e 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -3,18 +3,6 @@
        <groupId>net.pterodactylus</groupId>
        <artifactId>sone</artifactId>
        <version>0.0.1-SNAPSHOT</version>
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-compiler-plugin</artifactId>
-                               <configuration>
-                                       <source>1.6</source>
-                                       <target>1.6</target>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </build>
        <dependencies>
                <dependency>
                        <groupId>net.pterodactylus</groupId>
                        <scope>test</scope>
                </dependency>
        </dependencies>
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <configuration>
+                                       <source>1.6</source>
+                                       <target>1.6</target>
+                               </configuration>
+                       </plugin>
+               </plugins>
+       </build>
 </project>