aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2012-07-02 21:24:02 -0700
committerScott Jackson <daneren2005@gmail.com>2012-07-02 21:24:02 -0700
commita1a18f77a50804e0127dfa4b0f5240c49c541184 (patch)
tree19a38880afe505beddb5590379a8134d7730a277 /pom.xml
parentb61d787706979e7e20f4c3c4f93c1f129d92273f (diff)
downloaddsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.tar.gz
dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.tar.bz2
dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.zip
Initial Commit
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml157
1 files changed, 157 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 00000000..a6e91fa1
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,157 @@
+<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/maven-v4_0_0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>net.sourceforge.subsonic</groupId>
+ <artifactId>subsonic</artifactId>
+ <version>4.7.beta2</version>
+ <name>Subsonic</name>
+ <packaging>pom</packaging>
+ <organization>
+ <name>Sindre Mehus</name>
+ <url>http://subsonic.org/</url>
+ </organization>
+ <inceptionYear>2004</inceptionYear>
+
+ <properties>
+ <failOnDependencyWarning>true</failOnDependencyWarning>
+ <project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding>
+ </properties>
+
+ <repositories>
+ <repository>
+ <id>local1</id>
+ <name>Local Repository 1</name>
+ <url>file:repo</url>
+ </repository>
+ <repository>
+ <id>local2</id>
+ <name>Local Repository 2</name>
+ <url>file:../repo</url>
+ </repository>
+ <repository>
+ <id>java_net</id>
+ <name>download.java.net</name>
+ <url>http://download.java.net/maven/2/</url>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>Codehaus Repository</id>
+ <url>http://repository.codehaus.org/</url>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <scm>
+ <connection>scm:svn:https://subsonic.svn.sourceforge.net/svnroot/subsonic/trunk</connection>
+ <developerConnection>scm:svn:https://subsonic.svn.sourceforge.net/svnroot/subsonic/trunk</developerConnection>
+ <url>http://subsonic.svn.sourceforge.net/viewvc/subsonic/</url>
+ </scm>
+
+ <ciManagement>
+ <system>continuum</system>
+ <notifiers>
+ <notifier>
+ <type>mail</type>
+ <configuration>
+ <address>sindre@activeobjects.no</address>
+ </configuration>
+ </notifier>
+ </notifiers>
+ </ciManagement>
+
+ <developers>
+ <developer>
+ <name>Sindre Mehus</name>
+ <email>sindre@activeobjects.no</email>
+ </developer>
+ </developers>
+
+ <modules>
+ <module>subsonic-main</module>
+ </modules>
+
+ <profiles>
+ <profile>
+ <id>full</id>
+ <modules>
+ <module>subsonic-booter</module>
+ <module>subsonic-installer-windows</module>
+ <module>subsonic-installer-mac</module>
+ <module>subsonic-installer-debian</module>
+ <module>subsonic-installer-rpm</module>
+ <module>subsonic-backend</module>
+ <module>subsonic-site</module>
+ <module>subsonic-assembly</module>
+ </modules>
+ </profile>
+
+ </profiles>
+
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2.1</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.6</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>buildnumber-maven-plugin</artifactId>
+ <version>1.0</version>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+
+ <plugins>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ <encoding>ISO-8859-1</encoding>
+ <verbose>false</verbose>
+ <compilerVersion>1.5</compilerVersion>
+ <showWarnings>true</showWarnings>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>analyze</id>
+ <goals>
+ <goal>analyze-only</goal>
+ </goals>
+ <configuration>
+ <failOnWarning>${failOnDependencyWarning}</failOnWarning>
+ <ignoreNonCompile>true</ignoreNonCompile>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ </plugins>
+ </build>
+</project> \ No newline at end of file