diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2012-09-10 16:47:50 +0600 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2012-09-10 16:47:50 +0600 |
commit | 66b298b234225afafb4eb538071bb2bbd8309ee0 (patch) | |
tree | 5ebfc2162cd36e4a3df95922dc34d63df876342c /sonar-core/pom.xml | |
parent | 3ed3d2b1ccf2a5f3444ae1befff09b4a6f654604 (diff) | |
download | sonarqube-66b298b234225afafb4eb538071bb2bbd8309ee0.tar.gz sonarqube-66b298b234225afafb4eb538071bb2bbd8309ee0.zip |
Reformat POMs according to Maven POM Convention
Diffstat (limited to 'sonar-core/pom.xml')
-rw-r--r-- | sonar-core/pom.xml | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/sonar-core/pom.xml b/sonar-core/pom.xml index f760fdaf6aa..e4521c2c53f 100644 --- a/sonar-core/pom.xml +++ b/sonar-core/pom.xml @@ -1,31 +1,18 @@ <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> + <parent> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar</artifactId> <version>3.3-SNAPSHOT</version> </parent> + <artifactId>sonar-core</artifactId> + <name>Sonar :: Core</name> <description>Core components shared to batch and server</description> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>test-jar</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - <dependencies> <dependency> <groupId>${project.groupId}</groupId> @@ -155,6 +142,22 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + <profiles> <profile> <!-- Integration Tests are not open-source --> @@ -184,4 +187,5 @@ </dependencies> </profile> </profiles> + </project> |