pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. <relativePath>../</relativePath>
  6. <!--<relativePath>../pom.xml</relativePath>-->
  7. <artifactId>moquette-parent</artifactId>
  8. <groupId>io.moquette</groupId>
  9. <version>0.11-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>distribution</artifactId>
  12. <packaging>pom</packaging>
  13. <name>Moquette - distribution</name>
  14. <!-- Includes all modules -->
  15. <dependencies>
  16. <dependency>
  17. <groupId>${project.groupId}</groupId>
  18. <artifactId>moquette-broker</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>${project.groupId}</groupId>
  23. <artifactId>moquette-h2-storage</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>${project.groupId}</groupId>
  28. <artifactId>moquette-mapdb-storage</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.slf4j</groupId>
  33. <artifactId>slf4j-api</artifactId>
  34. <version>1.7.5</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.slf4j</groupId>
  38. <artifactId>slf4j-log4j12</artifactId>
  39. <version>1.7.5</version>
  40. <scope>runtime</scope>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <sourceDirectory>${basedir}/src/main/</sourceDirectory> <!-- Force default maven layout -->
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-assembly-plugin</artifactId>
  49. <version>2.4</version>
  50. <executions>
  51. <execution>
  52. <id>distribution-package</id>
  53. <phase>package</phase>
  54. <goals>
  55. <goal>single</goal>
  56. </goals>
  57. <configuration>
  58. <!-- Specifies the configuration file of the assembly plugin -->
  59. <descriptors>
  60. <descriptor>${basedir}/src/main/assembly/assembly.xml</descriptor>
  61. </descriptors>
  62. <tarLongFileMode>gnu</tarLongFileMode>
  63. </configuration>
  64. </execution>
  65. </executions>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>