Advertisement
jayblanc

pom.xml du client

Oct 22nd, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. <project
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  3. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>filestore-client</artifactId>
  6. <name>The FileStore : Client Module</name>
  7. <packaging>jar</packaging>
  8.  
  9. <parent>
  10. <groupId>fr.miage.jayblanc</groupId>
  11. <artifactId>filestore</artifactId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. </parent>
  14.  
  15. <dependencies>
  16. <dependency>
  17. <groupId>javax</groupId>
  18. <artifactId>javaee-api</artifactId>
  19. <scope>provided</scope>
  20. <type>jar</type>
  21. </dependency>
  22. <dependency>
  23. <groupId>fr.miage.jayblanc</groupId>
  24. <artifactId>filestore-api</artifactId>
  25. <scope>compile</scope>
  26. <type>jar</type>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.wildfly</groupId>
  30. <artifactId>wildfly-ejb-client-bom</artifactId>
  31. <type>pom</type>
  32. </dependency>
  33. <dependency>
  34. <groupId>commons-cli</groupId>
  35. <artifactId>commons-cli</artifactId>
  36. <scope>compile</scope>
  37. <type>jar</type>
  38. </dependency>
  39. </dependencies>
  40.  
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-jar-plugin</artifactId>
  46. <version>${version.jar.plugin}</version>
  47. <configuration>
  48. <archive>
  49. <addMavenDescriptor>false</addMavenDescriptor>
  50. <manifest>
  51. <mainClass>org.filestore.client.FileStoreClient</mainClass>
  52. </manifest>
  53. </archive>
  54. </configuration>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.dstovall</groupId>
  58. <artifactId>onejar-maven-plugin</artifactId>
  59. <executions>
  60. <execution>
  61. <goals>
  62. <goal>one-jar</goal>
  63. </goals>
  64. </execution>
  65. </executions>
  66. </plugin>
  67. </plugins>
  68. </build>
  69.  
  70. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement