Advertisement
Guest User

Untitled

a guest
Jan 9th, 2014
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.83 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3.  
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <groupId>net.sourceforge.subsonic</groupId>
  6.     <artifactId>subsonic</artifactId>
  7.     <version>4.9</version>
  8.     <name>Subsonic</name>
  9.     <packaging>pom</packaging>
  10.     <organization>
  11.         <name>Subsonic</name>
  12.         <url>http://subsonic.org/</url>
  13.     </organization>
  14.     <inceptionYear>2004</inceptionYear>
  15.  
  16.     <properties>
  17.         <failOnDependencyWarning>true</failOnDependencyWarning>
  18.         <project.build.sourceEncoding>iso-8859-1</project.build.sourceEncoding>
  19.     </properties>
  20.  
  21.     <repositories>
  22.         <repository>
  23.             <id>local1</id>
  24.             <name>Local Repository 1</name>
  25.             <url>file:repo</url>
  26.         </repository>
  27.         <repository>
  28.             <id>local2</id>
  29.             <name>Local Repository 2</name>
  30.             <url>file:../repo</url>
  31.         </repository>
  32.         <repository>
  33.             <id>java_net</id>
  34.             <name>download.java.net</name>
  35.             <url>http://download.java.net/maven/2/</url>
  36.         </repository>
  37.         <repository>
  38.             <id>teleal</id>
  39.             <name>teleal</name>
  40.             <url>http://teleal.org/m2</url>
  41.         </repository>
  42.     </repositories>
  43.  
  44.     <pluginRepositories>
  45.         <pluginRepository>
  46.             <id>Codehaus Repository</id>
  47.             <url>http://repository.codehaus.org/</url>
  48.         </pluginRepository>
  49.     </pluginRepositories>
  50.  
  51.     <scm>
  52.         <connection>scm:svn:svn+ssh://sindre_mehus@svn.code.sf.net/p/subsonic/code/trunk</connection>
  53.         <developerConnection>scm:svn:svn+ssh://sindre_mehus@svn.code.sf.net/p/subsonic/code/trunk</developerConnection>
  54.         <url>https://sourceforge.net/p/subsonic/code</url>
  55.     </scm>
  56.  
  57.     <ciManagement>
  58.         <system>continuum</system>
  59.         <notifiers>
  60.             <notifier>
  61.                 <type>mail</type>
  62.                 <configuration>
  63.                     <address>sindre@activeobjects.no</address>
  64.                 </configuration>
  65.             </notifier>
  66.         </notifiers>
  67.     </ciManagement>
  68.  
  69.     <developers>
  70.         <developer>
  71.             <name>Sindre Mehus</name>
  72.             <email>sindre@activeobjects.no</email>
  73.         </developer>
  74.     </developers>
  75.  
  76.     <modules>
  77.         <module>subsonic-main</module>
  78.     </modules>
  79.  
  80.     <profiles>
  81.         <profile>
  82.             <id>full</id>
  83.             <modules>
  84.                 <module>subsonic-booter</module>
  85.                 <module>subsonic-installer-windows</module>
  86.                 <module>subsonic-installer-mac</module>
  87.                 <module>subsonic-installer-debian</module>
  88.                 <module>subsonic-installer-rpm</module>
  89.                 <module>subsonic-backend</module>
  90.                 <module>subsonic-site</module>
  91.                 <module>subsonic-assembly</module>
  92.             </modules>
  93.         </profile>
  94.  
  95.         <profile>
  96.             <id>deb</id>
  97.             <modules>
  98.                 <module>subsonic-booter</module>
  99.                 <module>subsonic-installer-debian</module>
  100.             </modules>
  101.         </profile>
  102.     </profiles>
  103.  
  104.     <build>
  105.         <pluginManagement>
  106.             <plugins>
  107.                 <plugin>
  108.                     <groupId>org.apache.maven.plugins</groupId>
  109.                     <artifactId>maven-compiler-plugin</artifactId>
  110.                     <version>2.3.2</version>
  111.                 </plugin>
  112.                 <plugin>
  113.                     <groupId>org.apache.maven.plugins</groupId>
  114.                     <artifactId>maven-assembly-plugin</artifactId>
  115.                     <version>2.2.1</version>
  116.                 </plugin>
  117.                 <plugin>
  118.                     <groupId>org.apache.maven.plugins</groupId>
  119.                     <artifactId>maven-antrun-plugin</artifactId>
  120.                     <version>1.6</version>
  121.                 </plugin>
  122.                 <plugin>
  123.                     <groupId>org.apache.maven.plugins</groupId>
  124.                     <artifactId>maven-dependency-plugin</artifactId>
  125.                     <version>2.2</version>
  126.                 </plugin>
  127.                 <plugin>
  128.                     <groupId>org.codehaus.mojo</groupId>
  129.                     <artifactId>buildnumber-maven-plugin</artifactId>
  130.                     <version>1.0</version>
  131.                 </plugin>
  132.             </plugins>
  133.     </pluginManagement>
  134.  
  135.         <plugins>
  136.  
  137.             <plugin>
  138.                 <groupId>org.apache.maven.plugins</groupId>
  139.                 <artifactId>maven-compiler-plugin</artifactId>
  140.                 <configuration>
  141.                     <source>1.6</source>
  142.                     <target>1.6</target>
  143.                     <encoding>ISO-8859-1</encoding>
  144.                     <verbose>false</verbose>
  145.                     <compilerVersion>1.6</compilerVersion>
  146.                     <showWarnings>true</showWarnings>
  147.                 </configuration>
  148.             </plugin>
  149.  
  150.             <plugin>
  151.                 <groupId>org.apache.maven.plugins</groupId>
  152.                 <artifactId>maven-dependency-plugin</artifactId>
  153.                 <executions>
  154.                     <execution>
  155.                         <id>analyze</id>
  156.                         <goals>
  157.                             <goal>analyze-only</goal>
  158.                         </goals>
  159.                         <configuration>
  160.                             <failOnWarning>${failOnDependencyWarning}</failOnWarning>
  161.                             <ignoreNonCompile>true</ignoreNonCompile>
  162.                         </configuration>
  163.                     </execution>
  164.                 </executions>
  165.             </plugin>
  166.  
  167.         </plugins>
  168.     </build>
  169. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement