Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <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"//nexus.ailis.de/content/groups/public/</url>
- </repository>
- <repository>
- <id>com.springsource.repository.bundles.release</id>
- <name>EBR Spring Release Repository</name>
- <url>http://repository.springsource.com/maven/bundles/release</url>
- </repository>
- <repository>
- <id>com.springsource.repository.bundles.external</id>
- <name>EBR External Release Repository</name>
- <url>http://repository.springsource.com/maven/bundles/external</url>
- </repository>
- <repository>
- <id>oss-sonatype-snapshots</id>
- <name>OSS Sonatype Snapshots Repository</name>
- <url>https://oss.sonatype.org/content/repositories/snapshots</url>
- </repository>
- <repository>
- <id>jetty-releases</id>
- <name>Jetty Releases</name>
- <url>https://oss.sonatype.org/content/repositories/jetty-releases</url>
- </repository>
- </repositories>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.7</source>
- <target>1.7</target>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <phase>generate-resources</phase>
- <configuration>
- <target>
- <tstamp />
- <copy
- file="${basedir}/src/main/resources/net/sourceforge/subsonic/i18n/ResourceBundle_en.properties"
- tofile="${project.build.directory}/classes/net/sourceforge/subsonic/i18n/ResourceBundle.properties" />
- <echo file="${project.build.directory}/classes/build_number.txt">${version.musiccabinet}</echo>
- <echo file="${project.build.directory}/classes/build_date.txt">${DSTAMP}</echo>
- <echo file="${project.build.directory}/classes/version.txt">${project.version}</echo>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-maven-plugin</artifactId>
- <version>8.1.7.v20120910</version>
- <configuration>
- <stopPort>9966</stopPort>
- <stopKey>foo</stopKey>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.8</version>
- <configuration>
- <forkMode>always</forkMode>
- <argLine>-Djava.library.path=${basedir}/lib/
- -Djava.library.path=/usr/local/lib/</argLine>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>jetty</id>
- <build>
- <finalName>subsonic</finalName>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-jspc-maven-plugin</artifactId>
- <version>8.1.7.v20120910</version>
- <executions>
- <execution>
- <id>jspc</id>
- <goals>
- <goal>jspc</goal>
- </goals>
- <configuration>
- <trimSpaces>true</trimSpaces>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <webXml>${basedir}/target/web.xml</webXml>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- </profile>
- <profile>
- <id>tomcat</id>
- <build>
- <finalName>subsonic-tomcat</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.2</version>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- </project>
Add Comment
Please, Sign In to add comment