/protocols/asn/docs/sources-jbcp/pom.xml
http://mobicents.googlecode.com/ · XML · 80 lines · 73 code · 7 blank · 0 comment · 0 complexity · 4c3c5120f40406f1984b81b9e00b3bf9 MD5 · raw file
- <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>
- <artifactId>mobicents-asn-docs</artifactId>
- <groupId>org.mobicents.protocols.asn.docs</groupId>
- <version>2.0.0-SNAPSHOT</version>
- </parent>
- <artifactId>mobicents-asn-docs-sources-jbcp</artifactId>
- <properties>
- <THIS.PLATFORM>JBoss Communications</THIS.PLATFORM>
- <JEE.PLATFORM>JBoss Enterprise Application Platform</JEE.PLATFORM>
- <THIS.ISSUE_TRACKER_URL>http://bugzilla.redhat.com/bugzilla/</THIS.ISSUE_TRACKER_URL>
- <THIS.RELEASE_SOURCE_CODE_URL>?</THIS.RELEASE_SOURCE_CODE_URL>
- <THIS.TRUNK_SOURCE_CODE_URL>NOT AVAILABLE</THIS.TRUNK_SOURCE_CODE_URL>
- <author.email.amit>abhayani (at) redhat.com</author.email.amit>
- <author.email.bartosz>bbaranow (at) redhat.com</author.email.bartosz>
- <author.email.oleg>okulikov (at) redhat.com</author.email.oleg>
- </properties>
- <build>
- <resources>
- <resource>
- <directory>${basedir}/src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>${pom.groupId}</groupId>
- <artifactId>mobicents-asn-docs-sources</artifactId>
- <version>${pom.version}</version>
- <type>jar</type>
- <overWrite>true</overWrite>
- <outputDirectory>${basedir}/src/main/resources</outputDirectory>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>clean-resources</id>
- <phase>clean</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <tasks>
- <delete failonerror="false" includeemptydirs="true">
- <fileset dir="${basedir}/src" />
- </delete>
- </tasks>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>