lang-php
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.vertx</groupId> <artifactId>lang-php</artifactId> <version>0.1.0-beta1</version> </dependency>
<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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>io.vertx</groupId> <artifactId>lang-php</artifactId> <version>0.1.0-beta1</version> <packaging>jar</packaging> <name>PHP Vert.x lang module</name> <description>A PHP language implementation for the Vert.x application platform.</description> <url>https://github.com/vert-x/mod-lang-php</url> <inceptionYear>2013</inceptionYear> <properties> <module.name>${project.groupId}~${project.artifactId}~${project.version}</module.name> <vertx.version>2.1RC1</vertx.version> <testtools.version>2.0.2-final</testtools.version> <junit.version>4.8.2</junit.version> <quercus.version>4.0.36</quercus.version> <servlet.version>2.5</servlet.version> <maven.source.plugin.version>2.2.1</maven.source.plugin.version> <maven.compiler.plugin.version>3.0</maven.compiler.plugin.version> <maven.failsafe.plugin.version>2.14</maven.failsafe.plugin.version> <maven.clean.plugin.version>2.5</maven.clean.plugin.version> <maven.resources.plugin.version>2.6</maven.resources.plugin.version> <maven.dependency.plugin.version>2.7</maven.dependency.plugin.version> <maven.assembly.plugin.version>2.4</maven.assembly.plugin.version> </properties> <licenses> <license> <name>MIT License</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Jordan Halterman</name> <url>https://www.github.com/jordanhalterman</url> </developer> </developers> <scm> <connection>scm:git:git@github.com:vert-x/mod-lang-php.git</connection> <developerConnection>scm:git:git@github.com:vert-x/mod-lang-php.git</developerConnection> <url>git@github.com:vert-x/mod-lang-php.git</url> </scm> <dependencies> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <version>${vertx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-platform</artifactId> <version>${vertx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>testtools</artifactId> <version>${testtools.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.caucho</groupId> <artifactId>quercus</artifactId> <version>${quercus.version}</version> <type>jar</type> <scope>system</scope> <systemPath>${basedir}/lib/quercus-4.0.36.jar</systemPath> </dependency> <dependency> <groupId>com.caucho</groupId> <artifactId>resin-kernel</artifactId> <version>${quercus.version}</version> <type>jar</type> <scope>system</scope> <systemPath>${basedir}/lib/resin-kernel-4.0.36.jar</systemPath> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>${servlet.version}</version> <scope>compile</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven.resources.plugin.version}</version> <executions> <execution> <id>copy-classes</id> <phase>process-classes</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <overwrite>true</overwrite> <outputDirectory>${basedir}/target/mods/${module.name}/io</outputDirectory> <resources> <resource> <directory>target/classes/io</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> <execution> <id>copy-resources</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <overwrite>true</overwrite> <outputDirectory>${basedir}/target/mods/${module.name}</outputDirectory> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>mod.json</include> </includes> </resource> </resources> </configuration> </execution> <execution> <id>copy-libraries</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <overwrite>false</overwrite> <outputDirectory>${basedir}/target/mods/${module.name}/lib</outputDirectory> <resources> <resource> <directory>lib</directory> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${maven.dependency.plugin.version}</version> <executions> <execution> <id>copy-mod-dependencies-to-target</id> <phase>process-classes</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>target/mods/${module.name}/lib</outputDirectory> <includeScope>runtime</includeScope> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven.failsafe.plugin.version}</version> <configuration> <systemProperties> <property> <name>vertx.mods</name> <value>target/mods</value> </property> <property> <name>vertx.test.timeout</name> <value>30</value> </property> </systemProperties> <includes> <include>**/integration/**</include> </includes> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>${maven.assembly.plugin.version}</version> <configuration> <attach>true</attach> </configuration> <executions> <execution> <id>mod</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptor>src/main/assembly/mod.xml</descriptor> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven.clean.plugin.version}</version> <configuration> <filesets> <fileset> <directory>${basedir}/build/mods</directory> </fileset> <fileset> <directory>${basedir}/target/mods</directory> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <finalName>${module.name}</finalName> <addMavenDescriptor>false</addMavenDescriptor> <compress>true</compress> <manifest> <addClasspath>true</addClasspath> <classpathPrefix>lib</classpathPrefix> </manifest> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.1</version><!--$NO-MVN-MAN-VER$ --> <configuration> <allowTimestampedSnapshots>true</allowTimestampedSnapshots> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <versionRange>[2.7,)</versionRange> <goals> <goal>copy-dependencies</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>