Advertisement
Guest User

Untitled

a guest
Sep 24th, 2014
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 6.20 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>5.0</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>local1</id>
  47.             <name>Local Repository 1</name>
  48.             <url>file:repo</url>
  49.         </pluginRepository>
  50.         <pluginRepository>
  51.             <id>local2</id>
  52.             <name>Local Repository 2</name>
  53.             <url>file:../repo</url>
  54.         </pluginRepository>
  55.         <pluginRepository>
  56.             <id>Codehaus Repository</id>
  57.             <url>http://repository.codehaus.org/</url>
  58.         </pluginRepository>
  59.     </pluginRepositories>
  60.  
  61.     <scm>
  62.         <connection>scm:svn:svn+ssh://sindre_mehus@svn.code.sf.net/p/subsonic/code/trunk</connection>
  63.         <developerConnection>scm:svn:svn+ssh://sindre_mehus@svn.code.sf.net/p/subsonic/code/trunk</developerConnection>
  64.         <url>https://sourceforge.net/p/subsonic/code</url>
  65.     </scm>
  66.  
  67.     <ciManagement>
  68.         <system>continuum</system>
  69.         <notifiers>
  70.             <notifier>
  71.                 <type>mail</type>
  72.                 <configuration>
  73.                     <address>sindre@activeobjects.no</address>
  74.                 </configuration>
  75.             </notifier>
  76.         </notifiers>
  77.     </ciManagement>
  78.  
  79.     <developers>
  80.         <developer>
  81.             <name>Sindre Mehus</name>
  82.             <email>sindre@activeobjects.no</email>
  83.         </developer>
  84.     </developers>
  85.  
  86.     <modules>
  87.         <module>subsonic-rest-api</module>
  88.         <module>subsonic-main</module>
  89.     </modules>
  90.  
  91.     <profiles>
  92.         <profile>
  93.             <id>full</id>
  94.             <modules>
  95.                 <module>subsonic-booter</module>
  96.                 <module>subsonic-installer-windows</module>
  97.                 <module>subsonic-installer-mac</module>
  98.                 <module>subsonic-installer-debian</module>
  99.                 <module>subsonic-installer-rpm</module>
  100.                 <module>subsonic-backend</module>
  101.                 <module>subsonic-site</module>
  102.                 <module>subsonic-assembly</module>
  103.             </modules>
  104.         </profile>
  105.         <profile>
  106.             <id>debian</id>
  107.             <modules>
  108.                 <module>subsonic-booter</module>
  109.                 <module>subsonic-installer-debian</module>
  110.             </modules>
  111.         </profile>
  112.  
  113.     </profiles>
  114.  
  115.     <build>
  116.         <pluginManagement>
  117.             <plugins>
  118.                 <plugin>
  119.                     <groupId>org.apache.maven.plugins</groupId>
  120.                     <artifactId>maven-compiler-plugin</artifactId>
  121.                     <version>2.3.2</version>
  122.                 </plugin>
  123.                 <plugin>
  124.                     <groupId>org.apache.maven.plugins</groupId>
  125.                     <artifactId>maven-assembly-plugin</artifactId>
  126.                     <version>2.2.1</version>
  127.                 </plugin>
  128.                 <plugin>
  129.                     <groupId>org.apache.maven.plugins</groupId>
  130.                     <artifactId>maven-antrun-plugin</artifactId>
  131.                     <version>1.6</version>
  132.                 </plugin>
  133.                 <plugin>
  134.                     <groupId>org.apache.maven.plugins</groupId>
  135.                     <artifactId>maven-dependency-plugin</artifactId>
  136.                     <version>2.2</version>
  137.                 </plugin>
  138.                 <plugin>
  139.                     <groupId>org.codehaus.mojo</groupId>
  140.                     <artifactId>buildnumber-maven-plugin</artifactId>
  141.                     <version>1.0</version>
  142.                 </plugin>
  143.             </plugins>
  144.     </pluginManagement>
  145.  
  146.         <plugins>
  147.  
  148.             <plugin>
  149.                 <groupId>org.apache.maven.plugins</groupId>
  150.                 <artifactId>maven-compiler-plugin</artifactId>
  151.                 <configuration>
  152.                     <source>1.6</source>
  153.                     <target>1.6</target>
  154.                     <encoding>ISO-8859-1</encoding>
  155.                     <verbose>false</verbose>
  156.                     <compilerVersion>1.6</compilerVersion>
  157.                     <showWarnings>true</showWarnings>
  158.                 </configuration>
  159.             </plugin>
  160.  
  161.             <plugin>
  162.                 <groupId>org.apache.maven.plugins</groupId>
  163.                 <artifactId>maven-dependency-plugin</artifactId>
  164.                 <executions>
  165.                     <execution>
  166.                         <id>analyze</id>
  167.                         <goals>
  168.                             <goal>analyze-only</goal>
  169.                         </goals>
  170.                         <configuration>
  171.                             <failOnWarning>${failOnDependencyWarning}</failOnWarning>
  172.                             <ignoreNonCompile>true</ignoreNonCompile>
  173.                         </configuration>
  174.                     </execution>
  175.                 </executions>
  176.             </plugin>
  177.  
  178.         </plugins>
  179.     </build>
  180. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement