/protocols/jain-megaco/megaco-impl/pom.xml

http://mobicents.googlecode.com/ · XML · 39 lines · 34 code · 5 blank · 0 comment · 0 complexity · 5ad9fc6f1fc1b09b4623579a27ed5876 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. <parent>
  4. <groupId>org.mobicents.protocols.megaco</groupId>
  5. <artifactId>megaco-parent</artifactId>
  6. <version>1.0.00B-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>megaco-impl</artifactId>
  9. <name>Mobicents MEGACO Stack :: ${pom.artifactId}</name>
  10. <dependencies>
  11. <dependency>
  12. <groupId>log4j</groupId>
  13. <artifactId>log4j</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>${pom.groupId}</groupId>
  17. <artifactId>megaco-api</artifactId>
  18. <version>${pom.version}</version>
  19. </dependency>
  20. </dependencies>
  21. <build>
  22. <finalName>${pom.artifactId}-${pom.version}</finalName>
  23. <plugins>
  24. <plugin>
  25. <artifactId>maven-compiler-plugin</artifactId>
  26. <version>RELEASE</version>
  27. <configuration>
  28. <source>1.5</source>
  29. <target>1.5</target>
  30. </configuration>
  31. </plugin>
  32. </plugins>
  33. </build>
  34. </project>