/protocols/ss7/isup/release/pom.xml
XML | 109 lines | 103 code | 6 blank | 0 comment | 0 complexity | f864159ac4e8ac116618c4974aa0c7f6 MD5 | raw file
1<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"> 2 <modelVersion>4.0.0</modelVersion> 3 4 <packaging>pom</packaging> 5 6 <parent> 7 <groupId>org.mobicents</groupId> 8 <artifactId>mobicents-parent</artifactId> 9 <version>2.20-SNAPSHOT</version> 10 </parent> 11 12 13 <artifactId>isup-release</artifactId> 14 <name>Mobicents SS7 :: ISUP :: Release :: ${pom.artifactId}</name> 15 <profiles> 16 <profile> 17 <id>release</id> 18 <build> 19 <plugins> 20 <plugin> 21 <artifactId>maven-antrun-plugin</artifactId> 22 <inherited>false</inherited> 23 <executions> 24 <execution> 25 <id>copy.binary.rel</id> 26 <phase>install</phase> 27 <goals> 28 <goal>run</goal> 29 </goals> 30 <configuration> 31 <tasks> 32 <copy overwrite="true" todir="${basedir}/${release.name}"> 33 <fileset dir="${basedir}/../isup-impl/target"> 34 <include name="**.jar" /> 35 </fileset> 36 <fileset dir="${basedir}/../isup-api/target"> 37 <include name="**.jar" /> 38 </fileset> 39 </copy> 40 41 </tasks> 42 </configuration> 43 </execution> 44 <execution> 45 <id>clean.rel</id> 46 <phase>clean</phase> 47 <goals> 48 <goal>run</goal> 49 </goals> 50 <configuration> 51 <tasks> 52 <delete dir="${basedir}/${release.name}"> 53 </delete> 54 </tasks> 55 </configuration> 56 </execution> 57 </executions> 58 </plugin> 59 </plugins> 60 </build> 61 </profile> 62 </profiles> 63 <repositories> 64 <repository> 65 <id>maven</id> 66 <name>Maven Repository</name> 67 <url>http://repo1.maven.org/maven2</url> 68 <snapshots> 69 <enabled>false</enabled> 70 </snapshots> 71 </repository> 72 <repository> 73 <id>jboss</id> 74 <name>JBoss Repository</name> 75 <url>http://repository.jboss.org/maven2</url> 76 <snapshots> 77 <enabled>false</enabled> 78 </snapshots> 79 </repository> 80 <repository> 81 <id>jboss-snapshots</id> 82 <name>JBoss Snapshot Repository</name> 83 <url>http://snapshots.jboss.org/maven2</url> 84 <releases> 85 <enabled>false</enabled> 86 </releases> 87 <snapshots> 88 <enabled>true</enabled> 89 </snapshots> 90 </repository> 91 92 <repository> 93 <id>jboss-public-repository-group</id> 94 <name>JBoss Public Maven Repository Group</name> 95 <url> 96 https://repository.jboss.org/nexus/content/groups/public/ 97 </url> 98 <layout>default</layout> 99 <releases> 100 <enabled>true</enabled> 101 <updatePolicy>never</updatePolicy> 102 </releases> 103 <snapshots> 104 <enabled>true</enabled> 105 <updatePolicy>never</updatePolicy> 106 </snapshots> 107 </repository> 108 </repositories> 109</project>