raptor
Version:
RaptorJS provides an AMD module loader that works in Node, Rhino and the web browser. It also includes various sub-modules to support building optimized web applications.
606 lines (589 loc) • 23.4 kB
text/xml
<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">
<!-- POM Information about the Project -->
<modelVersion>4.0.0</modelVersion>
<groupId>org.raptorjs</groupId>
<artifactId>raptorjs-core</artifactId>
<version>2.3.1-SNAPSHOT</version>
<!-- Packing Type is bundle for OSGI Library Bundle -->
<packaging>bundle</packaging>
<scm>
<connection>scm:git:git://git@github.scm.corp.ebay.com:Raptor/RaptorJSOpenSource.git</connection>
<url>scm:git:git://git@github.scm.corp.ebay.com:Raptor/RaptorJSOpenSource.git</url>
<developerConnection>scm:git:git@github.scm.corp.ebay.com:Raptor/RaptorJSOpenSource.git</developerConnection>
</scm>
<distributionManagement>
<repository>
<id>raptor.releases</id>
<url>http://nxraptor/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>raptor.snapshots</id>
<url>http://nxraptor/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<!-- Configuration of repositories for dependency resolution -->
<repositories>
<repository>
<id>raptor.releases</id>
<url>http://nxraptor/content/repositories/releases/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
<repository>
<id>raptor.snapshots</id>
<url>http://nxraptor/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
<repository>
<id>raptor.thirdparty</id>
<url>http://nxraptor/content/repositories/thirdparty/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<!-- Configuration of Repositories for Maven Plugins -->
<pluginRepositories>
<pluginRepository>
<id>raptor.plugins</id>
<url>http://nxraptor/content/repositories/plugins/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>raptor.releases</id>
<url>http://nxraptor/content/repositories/releases/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-servlet_3.0_spec</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>4.3.0</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>4.3.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.8.5</version>
</dependency>
<dependency>
<groupId>org.mozilla.javascript</groupId>
<artifactId>com.springsource.org.mozilla.javascript</artifactId>
<version>1.7.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>com.springsource.org.apache.commons.logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- Build Configration -->
<build>
<!-- Inherit configuration needed for plugins -->
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/classes/META-INF/resources</outputDirectory>
<resources>
<resource>
<directory>lib</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<!-- Apache Maven Compiler Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<executions>
<execution>
<id>default-compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<source>${compileSource}</source>
<target>${compileSource}</target>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.5</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Include-Resource>{maven-resources}</Include-Resource>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>compile</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
<execution>
<id>bundle-install</id>
<phase>install</phase>
<goals>
<goal>install</goal>
</goals>
</execution>
<execution>
<id>bundle-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.9</version>
<configuration>
<forkMode>pertest</forkMode>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>generate-build-id</id>
<phase>generate-sources</phase>
<goals>
<goal>parse-version</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>bat.crimea.ua</groupId>
<artifactId>maven-increment-plugin</artifactId>
<version>1.20</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<tagNameFormat>RELEASE-@{project.version}</tagNameFormat>
<branchName>RAPTOR-${project.version}</branchName>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>2.0-beta-2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<inherited>true</inherited>
<version>2.1.2.ebay</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>com.ebay.osgi.build</groupId>
<artifactId>dependency-version-validator</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>validate-dependencies</goal>
</goals>
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>com.ebay.osgi.build</groupId>
<artifactId>maven-scm-build-info</artifactId>
<version>1.0.4</version>
<executions>
<execution>
<id>build-info</id>
<phase>generate-resources</phase>
<goals>
<goal>addscminfo</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>generate-build-number</id>
<phase>generate-sources</phase>
<goals>
<goal>create-timestamp</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<filesets>
<fileset>
<directory>src/main/resources/META-INF</directory>
<includes>
<include>MANIFEST.MF</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<!-- <executions> -->
<!-- <execution> -->
<!-- <id>copy-resources</id> -->
<!-- <phase>validate</phase> -->
<!-- <goals> -->
<!-- <goal>copy-resources</goal> -->
<!-- </goals> -->
<!-- <configuration> -->
<!-- <outputDirectory>${basedir}/target/classes/META-INF/resources</outputDirectory> -->
<!-- <resources> -->
<!-- <resource> -->
<!-- <directory>src/main/javascript/</directory> -->
<!-- <filtering>false</filtering> -->
<!-- </resource> -->
<!-- </resources> -->
<!-- </configuration> -->
<!-- </execution> -->
<!-- </executions> -->
</plugin>
<!-- Apache Felix Bundle Plugin - For Generation of Manifest after Compile
phase -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<!-- Configuration for generating the Manifest.mf -->
<configuration>
<manifestLocation>src/main/resources/META-INF</manifestLocation>
<!-- Manifest Headers which need to customized during manifest generation -->
<instructions>
<Bundle-SymbolicName>org.raptorjs.raptorjs-core</Bundle-SymbolicName>
<Export-Package>
org.raptorjs.rhino,
org.raptorjs.templating.rhino,
org.raptorjs.templating.rhino.servlet,
org.raptorjs.resources,
org.raptorjs.resources.osgi,
org.raptorjs.resources.packaging
</Export-Package>
<_nouses>true</_nouses>
<Import-Package>
*,
org.mozilla.javascript,
javax.el;version="2.0";resolution:=optional,
</Import-Package>
<X-Raptor-Resource-Search-Path>
/META-INF/resources
</X-Raptor-Resource-Search-Path>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>jar</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
<includes>
<include>**/*</include>
</includes>
<excludes>
</excludes>
<forceCreation>true</forceCreation>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>default-plugins</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.ebay.osgi.build</groupId>
<artifactId>maven-scm-build-info</artifactId>
</plugin>
<plugin>
<groupId>com.ebay.osgi.build</groupId>
<artifactId>dependency-version-validator</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-manifest-to-target-for-gep</id>
<phase>process-classes</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/classes/META-INF</outputDirectory>
<resources>
<resource>
<directory>${basedir}/src/main/resources/META-INF</directory>
<includes>
<include>MANIFEST.MF</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- sample command test: mvn process-sources release:branch -PcreateReleaseBranch
-DdryRun=true -DpushChanges=false real: mvn process-sources release:branch
-PcreateReleaseBranch -->
<id>createReleaseBranch</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<!-- breaks the project version into majorVersion, minorVersion,
incrementalVersion, etc. -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
<!-- adds one to the minor version and saves the value in
nextMinorVersion property -->
<plugin>
<groupId>bat.crimea.ua</groupId>
<artifactId>maven-increment-plugin</artifactId>
<executions>
<execution>
<id>increment-version</id>
<phase>process-sources</phase>
<goals>
<goal>touch</goal>
</goals>
<configuration>
<values>
<valueItem>
<value>${parsedVersion.minorVersion}</value>
<valueClassName>java.lang.Integer</valueClassName>
<incrementValue>1</incrementValue>
<outputPropertyName>nextMinorVersion</outputPropertyName>
</valueItem>
</values>
</configuration>
</execution>
</executions>
</plugin>
<!-- perform the branch creation itself -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<!-- Example:
current version = 1.1.0-SNAPSHOT
==> release branch name = RELEASE-1.1.X
==> release branch version = 1.1.0-SNAPSHOT
==> next development version: 1.1.1-SNAPSHOT
-->
<branchName>RELEASE-${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.X</branchName>
<developmentVersion>${parsedVersion.majorVersion}.${nextMinorVersion}.0-SNAPSHOT</developmentVersion>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- sample command test: mvn process-sources release:prepare -PperformRelease
-DdryRun=true -DpushChanges=false real: mvn process-sources release:prepare
-PperformRelease -->
<id>performRelease</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<!-- breaks the project version into majorVersion, minorVersion,
incrementalVersion, etc. -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
<!-- adds one to the increment version and saves the value
in nextIncrementalVersion property -->
<plugin>
<groupId>bat.crimea.ua</groupId>
<artifactId>maven-increment-plugin</artifactId>
<executions>
<execution>
<id>increment-version</id>
<phase>process-sources</phase>
<goals>
<goal>touch</goal>
</goals>
<configuration>
<values>
<valueItem>
<value>${parsedVersion.incrementalVersion}</value>
<valueClassName>java.lang.Integer</valueClassName>
<incrementValue>1</incrementValue>
<outputPropertyName>nextIncrementalVersion</outputPropertyName>
</valueItem>
</values>
</configuration>
</execution>
</executions>
</plugin>
<!-- perform the branch creation itself -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<!-- Example:
current version on release branch = 1.1.0-SNAPSHOT
==> release tag = 0.5.0-RELEASE-TAG
==> release version = 0.5.0-RELEASE
==> next version on release branch = 0.5.1-SNAPSHOT
-->
<releaseVersion>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}-RELEASE</releaseVersion>
<developmentVersion>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${nextIncrementalVersion}-SNAPSHOT</developmentVersion>
<tagNameFormat>@{project.version}-TAG</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>