diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-07-10 14:14:32 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-07-10 14:16:46 +0200 |
commit | 4659898b6d290ce2f5b3edf7396e32e4caa2bb24 (patch) | |
tree | 8968ca6d59ebfb85a220617d52f00d1ec05d2927 /server/pom.xml | |
parent | f09ad0c18ab1e326722e0fb224c05dc62b0e7c0e (diff) | |
download | sonarqube-4659898b6d290ce2f5b3edf7396e32e4caa2bb24.tar.gz sonarqube-4659898b6d290ce2f5b3edf7396e32e4caa2bb24.zip |
Move sonar-server, sonar-search and sonar-process into sub-dir server/
Diffstat (limited to 'server/pom.xml')
-rw-r--r-- | server/pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/server/pom.xml b/server/pom.xml new file mode 100644 index 00000000000..9fe1db1fc88 --- /dev/null +++ b/server/pom.xml @@ -0,0 +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>4.5-SNAPSHOT</version> + </parent> + <artifactId>sonar-server-parent</artifactId> + <packaging>pom</packaging> + <name>SonarQube :: Server :: Parent</name> + + <modules> + <module>sonar-process</module> + <module>sonar-search</module> + <module>sonar-server</module> + </modules> +</project> |