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 | |
parent | 3ed3d2b1ccf2a5f3444ae1befff09b4a6f654604 (diff) | |
download | sonarqube-66b298b234225afafb4eb538071bb2bbd8309ee0.tar.gz sonarqube-66b298b234225afafb4eb538071bb2bbd8309ee0.zip |
Reformat POMs according to Maven POM Convention
-rw-r--r-- | sonar-application/pom.xml | 131 | ||||
-rw-r--r-- | sonar-channel/pom.xml | 66 | ||||
-rw-r--r-- | sonar-core/pom.xml | 36 | ||||
-rw-r--r-- | sonar-markdown/pom.xml | 73 | ||||
-rw-r--r-- | sonar-plugin-api/pom.xml | 35 |
5 files changed, 181 insertions, 160 deletions
diff --git a/sonar-application/pom.xml b/sonar-application/pom.xml index 33bb7ab3843..b7b000e9e8e 100644 --- a/sonar-application/pom.xml +++ b/sonar-application/pom.xml @@ -1,78 +1,19 @@ <?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-application</artifactId> <packaging>jar</packaging> + <name>Sonar :: Application</name> <description>Package the standalone distribution</description> - <build> - <plugins> - <plugin> - <artifactId>maven-assembly-plugin</artifactId> - <executions> - <execution> - <phase>package</phase> - <goals> - <goal>single</goal> - </goals> - <configuration> - <appendAssemblyId>false</appendAssemblyId> - <finalName>sonar-${project.version}</finalName> - <descriptors> - <descriptor>assembly.xml</descriptor> - </descriptors> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <artifactId>maven-antrun-plugin</artifactId> - <executions> - <execution> - <phase>package</phase> - <configuration> - <target> - <checksum file="${project.build.directory}/sonar-${project.version}.zip" algorithm="md5" /> - <checksum file="${project.build.directory}/sonar-${project.version}.zip" algorithm="sha" /> - </target> - </configuration> - <goals> - <goal>run</goal> - </goals> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-enforcer-plugin</artifactId> - <executions> - <execution> - <id>enforce-distribution-size</id> - <goals> - <goal>enforce</goal> - </goals> - <phase>verify</phase> - <configuration> - <rules> - <requireFilesSize> - <maxsize>54000000</maxsize> - <minsize>52000000</minsize> - <files> - <file>${project.build.directory}/sonar-${project.version}.zip</file> - </files> - </requireFilesSize> - </rules> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> + <dependencies> <dependency> <groupId>org.codehaus.sonar</groupId> @@ -227,6 +168,70 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <appendAssemblyId>false</appendAssemblyId> + <finalName>sonar-${project.version}</finalName> + <descriptors> + <descriptor>assembly.xml</descriptor> + </descriptors> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <configuration> + <target> + <checksum file="${project.build.directory}/sonar-${project.version}.zip" algorithm="md5" /> + <checksum file="${project.build.directory}/sonar-${project.version}.zip" algorithm="sha" /> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <executions> + <execution> + <id>enforce-distribution-size</id> + <goals> + <goal>enforce</goal> + </goals> + <phase>verify</phase> + <configuration> + <rules> + <requireFilesSize> + <maxsize>54000000</maxsize> + <minsize>52000000</minsize> + <files> + <file>${project.build.directory}/sonar-${project.version}.zip</file> + </files> + </requireFilesSize> + </rules> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <profiles> <profile> <id>release</id> diff --git a/sonar-channel/pom.xml b/sonar-channel/pom.xml index 830a25af0c6..dc6859b63ed 100644 --- a/sonar-channel/pom.xml +++ b/sonar-channel/pom.xml @@ -1,34 +1,38 @@ <?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> - <relativePath>..</relativePath> - </parent> - <artifactId>sonar-channel</artifactId> - <name>Sonar :: Channel</name> - <description>Code Channel</description> + <modelVersion>4.0.0</modelVersion> - <dependencies> - <dependency> - <groupId>commons-io</groupId> - <artifactId>commons-io</artifactId> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>hamcrest-all</artifactId> - <scope>test</scope> - </dependency> - </dependencies> -</project>
\ No newline at end of file + <parent> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar</artifactId> + <version>3.3-SNAPSHOT</version> + <relativePath>..</relativePath> + </parent> + + <artifactId>sonar-channel</artifactId> + + <name>Sonar :: Channel</name> + <description>Code Channel</description> + + <dependencies> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-all</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + +</project> 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> diff --git a/sonar-markdown/pom.xml b/sonar-markdown/pom.xml index e18ae194e62..c2c976db363 100644 --- a/sonar-markdown/pom.xml +++ b/sonar-markdown/pom.xml @@ -1,38 +1,41 @@ <?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> - <relativePath>..</relativePath> - </parent> - <artifactId>sonar-markdown</artifactId> - <name>Sonar :: Markdown</name> + <modelVersion>4.0.0</modelVersion> - <dependencies> - <dependency> - <groupId>org.codehaus.sonar</groupId> - <artifactId>sonar-channel</artifactId> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>hamcrest-all</artifactId> - <scope>test</scope> - </dependency> - </dependencies> -</project>
\ No newline at end of file + <parent> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar</artifactId> + <version>3.3-SNAPSHOT</version> + <relativePath>..</relativePath> + </parent> + + <artifactId>sonar-markdown</artifactId> + <name>Sonar :: Markdown</name> + + <dependencies> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-channel</artifactId> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-all</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + +</project> diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml index 0743ee27526..4236d25f231 100644 --- a/sonar-plugin-api/pom.xml +++ b/sonar-plugin-api/pom.xml @@ -1,29 +1,17 @@ <?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-plugin-api</artifactId> <packaging>jar</packaging> + <name>Sonar :: Plugin API</name> - <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>org.codehaus.sonar</groupId> @@ -180,4 +168,21 @@ <scope>test</scope> </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> + </project> |