pom.xml 1013 B

1234567891011121314151617181920212223242526272829303132
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.sencorsta</groupId>
  6. <artifactId>ids</artifactId>
  7. <version>2.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>idsCommon</artifactId>
  10. <packaging>jar</packaging>
  11. <name>idsCommon</name>
  12. <description>ICe Distribution Service Common</description>
  13. <url>http://www.sencorsta.com</url>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.sencorsta</groupId>
  20. <artifactId>idsCore</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <finalName>ids-common</finalName>
  26. </build>
  27. </project>